From e0f24ce2f4cd2d92775cc875ed2f5cde36fcf378 Mon Sep 17 00:00:00 2001 From: Microsoft Date: Mon, 13 Apr 2015 09:23:28 -0700 Subject: [PATCH 01/58] bug:1778355 Desktop Support/Add paging for SP --- .../Collection/NewAzureRemoteAppCollection.cs | 9 +- .../GetAzureRemoteAppUser.cs | 106 ++++++++++-------- 2 files changed, 69 insertions(+), 46 deletions(-) diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs index 889844a487bf..d8b3ca2dddc0 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs @@ -127,6 +127,13 @@ public class NewAzureRemoteAppCollection : RdsCmdlet [ValidateNotNullOrEmpty] public string CustomRdpProperty { get; set; } + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Set to either Apps or Desktop." + )] + [ValidateNotNullOrEmpty] + public CollectionMode? ResourceType { get; set; } + public override void ExecuteCmdlet() { // register the subscription for this service if it has not been before @@ -142,7 +149,7 @@ public override void ExecuteCmdlet() PlanName = Plan, Description = Description, CustomRdpProperty = CustomRdpProperty, - Mode = CollectionMode.Apps + Mode = ResourceType ?? CollectionMode.Apps }; OperationResultWithTrackingId response = null; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs index caeef4382a35..db6add061555 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs @@ -40,6 +40,8 @@ public class GetAzureRemoteAppUser : RdsCmdlet [ValidateNotNullOrEmpty()] public string UserUpn { get; set; } + private bool showAllUsers = false; + public class ServicePrincipalComparer : IComparer { public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second) @@ -67,68 +69,82 @@ public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second) } } - public override void ExecuteCmdlet() + private bool ProccessUsers(SecurityPrincipalInfoListResult response) { - SecurityPrincipalInfoListResult response = null; ConsentStatusModel model = null; - bool showAllUsers = String.IsNullOrWhiteSpace(UserUpn); bool found = false; - if (showAllUsers == false) + if (ExactMatch) { - CreateWildcardPattern(UserUpn); - } + SecurityPrincipalInfo userconsent = null; - response = CallClient(() => Client.Principals.List(CollectionName), Client.Principals); + userconsent = response.SecurityPrincipalInfoList.FirstOrDefault(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && + String.Equals(user.SecurityPrincipal.Name, UserUpn, StringComparison.OrdinalIgnoreCase)); - if (response != null && response.SecurityPrincipalInfoList != null) + if (userconsent == null) + { + WriteErrorWithTimestamp("User: " + UserUpn + " does not exist in collection " + CollectionName); + found = false; + } + else + { + model = new ConsentStatusModel(userconsent); + WriteObject(model); + found = true; + } + } + else { - if (ExactMatch) + IEnumerable spList = null; + + if (showAllUsers) + { + spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User); + } + else { - SecurityPrincipalInfo userconsent = null; + spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && + Wildcard.IsMatch(user.SecurityPrincipal.Name)); + } - userconsent = response.SecurityPrincipalInfoList.FirstOrDefault(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && - String.Equals(user.SecurityPrincipal.Name, UserUpn, StringComparison.OrdinalIgnoreCase)); + if (spList != null && spList.Count() > 0) + { + List userConsents = new List(spList); + IComparer comparer = new ServicePrincipalComparer(); - if (userconsent == null) + userConsents.Sort(comparer); + foreach (SecurityPrincipalInfo consent in userConsents) { - WriteErrorWithTimestamp("User: " + UserUpn + " does not exist in collection " + CollectionName); - found = false; - } - else - { - model = new ConsentStatusModel(userconsent); + model = new ConsentStatusModel(consent); WriteObject(model); - found = true; } + found = true; } - else - { - IEnumerable spList = null; + } - if (showAllUsers) - { - spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User); - } - else - { - spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && - Wildcard.IsMatch(user.SecurityPrincipal.Name)); - } + return found; + } + public override void ExecuteCmdlet() + { + SecurityPrincipalInfoListResult response = null; + bool found = false; - if (spList != null && spList.Count() > 0) - { - List userConsents = new List(spList); - IComparer comparer = new ServicePrincipalComparer(); - - userConsents.Sort(comparer); - foreach (SecurityPrincipalInfo consent in spList) - { - model = new ConsentStatusModel(consent); - WriteObject(model); - } - found = true; - } + showAllUsers = String.IsNullOrWhiteSpace(UserUpn); + + if (showAllUsers == false) + { + CreateWildcardPattern(UserUpn); + } + + response = CallClient(() => Client.Principals.List(CollectionName, null), Client.Principals); + + if (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) + { + found = ProccessUsers(response); + while (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) + { + response = CallClient(() => Client.Principals.List(CollectionName, response.ContinunationToken), Client.Principals); + ProccessUsers(response); } } From 1bd4cd8802a85832fd031f89d694b3b8fed1f855 Mon Sep 17 00:00:00 2001 From: Microsoft Date: Mon, 13 Apr 2015 09:23:28 -0700 Subject: [PATCH 02/58] bug:1778355 Desktop Support/Add paging for SP --- .../Collection/NewAzureRemoteAppCollection.cs | 9 +- .../GetAzureRemoteAppUser.cs | 107 ++++++++++-------- 2 files changed, 70 insertions(+), 46 deletions(-) diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs index 889844a487bf..d8b3ca2dddc0 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs @@ -127,6 +127,13 @@ public class NewAzureRemoteAppCollection : RdsCmdlet [ValidateNotNullOrEmpty] public string CustomRdpProperty { get; set; } + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Set to either Apps or Desktop." + )] + [ValidateNotNullOrEmpty] + public CollectionMode? ResourceType { get; set; } + public override void ExecuteCmdlet() { // register the subscription for this service if it has not been before @@ -142,7 +149,7 @@ public override void ExecuteCmdlet() PlanName = Plan, Description = Description, CustomRdpProperty = CustomRdpProperty, - Mode = CollectionMode.Apps + Mode = ResourceType ?? CollectionMode.Apps }; OperationResultWithTrackingId response = null; diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs index caeef4382a35..829cbe94d017 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs @@ -40,6 +40,8 @@ public class GetAzureRemoteAppUser : RdsCmdlet [ValidateNotNullOrEmpty()] public string UserUpn { get; set; } + private bool showAllUsers = false; + public class ServicePrincipalComparer : IComparer { public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second) @@ -67,68 +69,83 @@ public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second) } } - public override void ExecuteCmdlet() + private bool ProccessUsers(SecurityPrincipalInfoListResult response) { - SecurityPrincipalInfoListResult response = null; ConsentStatusModel model = null; - bool showAllUsers = String.IsNullOrWhiteSpace(UserUpn); bool found = false; - if (showAllUsers == false) + if (ExactMatch) { - CreateWildcardPattern(UserUpn); - } + SecurityPrincipalInfo userconsent = null; - response = CallClient(() => Client.Principals.List(CollectionName), Client.Principals); + userconsent = response.SecurityPrincipalInfoList.FirstOrDefault(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && + String.Equals(user.SecurityPrincipal.Name, UserUpn, StringComparison.OrdinalIgnoreCase)); - if (response != null && response.SecurityPrincipalInfoList != null) + if (userconsent == null) + { + WriteErrorWithTimestamp("User: " + UserUpn + " does not exist in collection " + CollectionName); + found = false; + } + else + { + model = new ConsentStatusModel(userconsent); + WriteObject(model); + found = true; + } + } + else { - if (ExactMatch) + IEnumerable spList = null; + + if (showAllUsers) + { + spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User); + } + else { - SecurityPrincipalInfo userconsent = null; + spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && + Wildcard.IsMatch(user.SecurityPrincipal.Name)); + } - userconsent = response.SecurityPrincipalInfoList.FirstOrDefault(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && - String.Equals(user.SecurityPrincipal.Name, UserUpn, StringComparison.OrdinalIgnoreCase)); + if (spList != null && spList.Count() > 0) + { + List userConsents = new List(spList); + IComparer comparer = new ServicePrincipalComparer(); - if (userconsent == null) + userConsents.Sort(comparer); + foreach (SecurityPrincipalInfo consent in userConsents) { - WriteErrorWithTimestamp("User: " + UserUpn + " does not exist in collection " + CollectionName); - found = false; - } - else - { - model = new ConsentStatusModel(userconsent); + model = new ConsentStatusModel(consent); WriteObject(model); - found = true; } + found = true; } - else - { - IEnumerable spList = null; + } - if (showAllUsers) - { - spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User); - } - else - { - spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User && - Wildcard.IsMatch(user.SecurityPrincipal.Name)); - } + return found; + } + public override void ExecuteCmdlet() + { + SecurityPrincipalInfoListResult response = null; + bool found = false; + string padding = ""; - if (spList != null && spList.Count() > 0) - { - List userConsents = new List(spList); - IComparer comparer = new ServicePrincipalComparer(); - - userConsents.Sort(comparer); - foreach (SecurityPrincipalInfo consent in spList) - { - model = new ConsentStatusModel(consent); - WriteObject(model); - } - found = true; - } + showAllUsers = String.IsNullOrWhiteSpace(UserUpn); + + if (showAllUsers == false) + { + CreateWildcardPattern(UserUpn); + } + + response = CallClient(() => Client.Principals.List(CollectionName, padding), Client.Principals); + + if (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) + { + found = ProccessUsers(response); + while (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0 && !String.IsNullOrWhiteSpace(response.ContinunationToken)) + { + response = CallClient(() => Client.Principals.List(CollectionName, response.ContinunationToken), Client.Principals); + ProccessUsers(response); } } From f4b2cbccd178ccce6d64e4e31632c1f905a1ca34 Mon Sep 17 00:00:00 2001 From: Microsoft Date: Thu, 23 Apr 2015 12:39:39 -0700 Subject: [PATCH 03/58] bug:1778355 Desktop Support/Add paging for SP --- .../SecurityPrincipals/GetAzureRemoteAppUser.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs index 829cbe94d017..782956c801e1 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs @@ -128,7 +128,6 @@ public override void ExecuteCmdlet() { SecurityPrincipalInfoListResult response = null; bool found = false; - string padding = ""; showAllUsers = String.IsNullOrWhiteSpace(UserUpn); @@ -137,14 +136,15 @@ public override void ExecuteCmdlet() CreateWildcardPattern(UserUpn); } - response = CallClient(() => Client.Principals.List(CollectionName, padding), Client.Principals); + // You must pass in an empty string to this call. After that pass in the token returned by the previous call + response = CallClient(() => Client.Principals.ListByPage(CollectionName, ""), Client.Principals); if (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) { found = ProccessUsers(response); - while (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0 && !String.IsNullOrWhiteSpace(response.ContinunationToken)) + while (response != null && !String.IsNullOrWhiteSpace(response.ContinuationToken) && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) { - response = CallClient(() => Client.Principals.List(CollectionName, response.ContinunationToken), Client.Principals); + response = CallClient(() => Client.Principals.ListByPage(CollectionName, response.ContinuationToken), Client.Principals); ProccessUsers(response); } } From d52ef022dbea32b8746964a407739b9044f32eb5 Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Wed, 29 Apr 2015 09:20:49 -0700 Subject: [PATCH 04/58] Adding Checkin Tests to Azure RemoteApp --- .../Commands.ScenarioTest.csproj | 5 + .../RemoteAppTests/CreateCloudCollection.cs | 54 ++-- .../RemoteAppTests/environmentsetuphelper.cs | 269 ++++++++++++++++++ .../Resources/RemoteApp/RemoteAppCI_Test.ps1 | 175 ++++++++++++ .../Resources/RemoteApp/Utility.ps1 | 81 ++++++ .../Commands.ScenarioTest/packages.config | 1 + .../Commands.RemoteApp.csproj | 3 +- .../GetAzureRemoteAppUser.cs | 4 +- 8 files changed, 564 insertions(+), 28 deletions(-) create mode 100644 src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs create mode 100644 src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 create mode 100644 src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index 3b029c71051e..ffebafa759c7 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -280,6 +280,7 @@ Resources.resx + @@ -456,6 +457,10 @@ {58a78f29-8c0c-4a5e-893e-3953c0f29c8a} Commands.ServiceManagement.Test + + {492d2af2-950b-4f2e-8079-8794305313fd} + Commands.RemoteApp + {bc420543-c04e-4bf3-96e1-cd81b823bdd7} Commands.Test.Utilities diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs index cc058aa7f5a9..978a25621e09 100644 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs +++ b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs @@ -1,61 +1,67 @@ using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Test; using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Management.Automation; using System.IO; using System.Linq; using Xunit; +using Microsoft.Azure.Management.RemoteApp; + namespace Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests { - public class CreateCloudCollection //: AzurePowerShellCertificateTest + + public class CreateCloudCollection { private EnvironmentSetupHelper helper = null; - private RDFETestEnvironmentFactory rdfeTestFactory = null; - public CreateCloudCollection() + protected void SetupManagementClients() { - helper = new EnvironmentSetupHelper(); + StorageManagementClient managedCacheClient = GetManagedCacheClient(); + helper = new EnvironmentSetupHelper(); + helper.SetupManagementClients(managedCacheClient); + helper.SetupSomeOfManagementClients(); } - protected void SetupManagementClients() + + protected void SetupAzureEnvironment() { -// StorageManagementClient managedCacheClient = GetManagedCacheClient(); -// helper.SetupManagementClients(managedCacheClient); - helper.SetupSomeOfManagementClients(); + EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); + helper.SetupEnvironment(AzureModule.AzureServiceManagement); } - protected void RunPowerShellTest(params string[] scripts) + protected Collection RunPowerShellTest(params string[] scripts) { using (UndoContext context = UndoContext.Current) { context.Start(TestUtilities.GetCallingClass(1), TestUtilities.GetCurrentMethodName(2)); List modules = null; - -// rdfeTestFactory = new RDFETestEnvironmentFactory(); - - SetupManagementClients(); + Collection pipeLineObjects = null; + Collection result = new Collection(); + EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); modules = Directory.GetFiles(@"ServiceManagement\Azure\RemoteApp", "*.ps1").ToList(); + helper.SetupSomeOfManagementClients(); + helper.SetupEnvironment(AzureModule.AzureServiceManagement); helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray()); -// helper.SetupEnvironment(AzureModule.AzureServiceManagement); - helper.RunPowerShellTest(scripts); + pipeLineObjects = helper.RunPowerShellTest(scripts); + foreach (PSObject obj in pipeLineObjects) + { + T item = LanguagePrimitives.ConvertTo(obj); + result.Add(item); + } + return result; } } -#if false - protected StorageManagementClient GetManagedCacheClient() - { - return TestBase.GetServiceClient(new RDFETestEnvironmentFactory()); - } -#endif - [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void foo1() + public void CheckinTest() { - RunPowerShellTest("Hello"); + RunPowerShellTest("CheckinTest"); } } } diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs b/src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs new file mode 100644 index 000000000000..a7419ba05d9b --- /dev/null +++ b/src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs @@ -0,0 +1,269 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.ObjectModel; +using System.Management.Automation; +using System.Security.Cryptography.X509Certificates; +using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Diagnostics; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Test; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Azure; +using System.IO; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests +{ + public class EnvironmentSetupHelper + { + private static string testEnvironmentName = "__test-environment"; + private static string testSubscriptionName = "__test-subscriptions"; + private AzureSubscription testSubscription; + private AzureAccount testAccount; + protected List modules; + protected ProfileClient ProfileClient { get; set; } + + public EnvironmentSetupHelper() + { + var datastore = new MockDataStore(); + AzureSession.DataStore = datastore; + var profile = new AzureProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile)); + AzurePSCmdlet.CurrentProfile = profile; + AzureSession.DataStore = datastore; + ProfileClient = new ProfileClient(profile); + + // Ignore SSL errors + System.Net.ServicePointManager.ServerCertificateValidationCallback += (se, cert, chain, sslerror) => true; + // Set RunningMocked + if (HttpMockServer.GetCurrentMode() == HttpRecorderMode.Playback) + { + TestMockSupport.RunningMocked = true; + } + else + { + TestMockSupport.RunningMocked = false; + } + } + + /// + /// Loads DummyManagementClientHelper with clients and throws exception if any client is missing. + /// + /// + public void SetupManagementClients(params object[] initializedManagementClients) + { + AzureSession.ClientFactory = new MockClientFactory(initializedManagementClients); + } + + /// + /// Loads DummyManagementClientHelper with clients and sets it up to create missing clients dynamically. + /// + /// + public void SetupSomeOfManagementClients(params object[] initializedManagementClients) + { + AzureSession.ClientFactory = new MockClientFactory(initializedManagementClients, false); + } + + public void SetupEnvironment(AzureModule mode) + { + SetupAzureEnvironmentFromEnvironmentVariables(mode); + + ProfileClient.Profile.Save(); + } + + private void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) + { + TestEnvironment rdfeEnvironment = new RDFETestEnvironmentFactory().GetTestEnvironment(); + + if (rdfeEnvironment.UserName == null) + { + rdfeEnvironment.UserName = "fakeuser@microsoft.com"; + } + + SetAuthenticationFactory(mode, rdfeEnvironment, null); + + AzureEnvironment environment = new AzureEnvironment { Name = testEnvironmentName }; + + Debug.Assert(rdfeEnvironment != null); + environment.Endpoints[AzureEnvironment.Endpoint.ActiveDirectory] = rdfeEnvironment.Endpoints.AADAuthUri.AbsoluteUri; + environment.Endpoints[AzureEnvironment.Endpoint.Gallery] = rdfeEnvironment.Endpoints.GalleryUri.AbsoluteUri; + + if (rdfeEnvironment != null) + { + environment.Endpoints[AzureEnvironment.Endpoint.ServiceManagement] = rdfeEnvironment.BaseUri.AbsoluteUri; + } + + if (!ProfileClient.Profile.Environments.ContainsKey(testEnvironmentName)) + { + ProfileClient.AddOrSetEnvironment(environment); + } + + if (rdfeEnvironment.SubscriptionId != null) + { + testSubscription = new AzureSubscription() + { + Id = new Guid(rdfeEnvironment.SubscriptionId), + Name = testSubscriptionName, + Environment = testEnvironmentName, + Account = rdfeEnvironment.UserName, + Properties = new Dictionary + { + {AzureSubscription.Property.Default, "True"}, + { + AzureSubscription.Property.StorageAccount, + Environment.GetEnvironmentVariable("AZURE_STORAGE_ACCOUNT") + }, + } + }; + + testAccount = new AzureAccount() + { + Id = rdfeEnvironment.UserName, + Type = AzureAccount.AccountType.User, + Properties = new Dictionary + { + {AzureAccount.Property.Subscriptions, rdfeEnvironment.SubscriptionId}, + } + }; + + ProfileClient.Profile.Subscriptions[testSubscription.Id] = testSubscription; + ProfileClient.Profile.Accounts[testAccount.Id] = testAccount; + ProfileClient.SetSubscriptionAsDefault(testSubscription.Name, testSubscription.Account); + } + } + + private void SetAuthenticationFactory(AzureModule mode, TestEnvironment rdfeEnvironment, TestEnvironment csmEnvironment) + { + string jwtToken = null; + X509Certificate2 certificate = null; + TestEnvironment currentEnvironment = (mode == AzureModule.AzureResourceManager ? csmEnvironment : rdfeEnvironment); + + if (mode == AzureModule.AzureServiceManagement) + { + if (rdfeEnvironment.Credentials is TokenCloudCredentials) + { + jwtToken = ((TokenCloudCredentials)rdfeEnvironment.Credentials).Token; + } + if (rdfeEnvironment.Credentials is CertificateCloudCredentials) + { + certificate = ((CertificateCloudCredentials)rdfeEnvironment.Credentials).ManagementCertificate; + } + } + else + { + if (csmEnvironment.Credentials is TokenCloudCredentials) + { + jwtToken = ((TokenCloudCredentials)csmEnvironment.Credentials).Token; + } + if (csmEnvironment.Credentials is CertificateCloudCredentials) + { + certificate = ((CertificateCloudCredentials)csmEnvironment.Credentials).ManagementCertificate; + } + } + + + if (jwtToken != null) + { + AzureSession.AuthenticationFactory = new MockTokenAuthenticationFactory(currentEnvironment.UserName, + jwtToken); + } + else if (certificate != null) + { + AzureSession.AuthenticationFactory = new MockCertificateAuthenticationFactory(currentEnvironment.UserName, + certificate); + } + } + + public void SetupModules(AzureModule mode, params string[] modules) + { + this.modules = new List(); + if (mode == AzureModule.AzureProfile) + { + this.modules.Add(@"ServiceManagement\Azure\Azure.psd1"); + this.modules.Add(@"ResourceManager\AzureResourceManager\AzureResourceManager.psd1"); + } + else if (mode == AzureModule.AzureServiceManagement) + { + this.modules.Add(@"ServiceManagement\Azure\Azure.psd1"); + } + else if (mode == AzureModule.AzureResourceManager) + { + this.modules.Add(@"ResourceManager\AzureResourceManager\AzureResourceManager.psd1"); + } + else + { + throw new ArgumentException("Unknown command type for testing"); + } + this.modules.Add("Assert.ps1"); + this.modules.Add("Common.ps1"); + this.modules.AddRange(modules); + } + + public virtual Collection RunPowerShellTest(params string[] scripts) + { + using (var powershell = System.Management.Automation.PowerShell.Create()) + { + SetupPowerShellModules(powershell); + + Collection output = null; + for (int i = 0; i < scripts.Length; ++i) + { + Console.WriteLine(scripts[i]); + powershell.AddScript(scripts[i]); + } + try + { + output = powershell.Invoke(); + + if (powershell.Streams.Error.Count > 0) + { + throw new RuntimeException( + "Test failed due to a non-empty error stream, check the error stream in the test log for more details."); + } + + return output; + } + catch (Exception psException) + { + powershell.LogPowerShellException(psException); + throw; + } + finally + { + powershell.LogPowerShellResults(output); + } + } + } + + private void SetupPowerShellModules(System.Management.Automation.PowerShell powershell) + { + powershell.AddScript(string.Format("cd \"{0}\"", Environment.CurrentDirectory)); + + foreach (string moduleName in modules) + { + powershell.AddScript(string.Format("Import-Module \".\\{0}\"", moduleName)); + } + + powershell.AddScript("$VerbosePreference='Continue'"); + powershell.AddScript("$DebugPreference='Continue'"); + powershell.AddScript("$ErrorActionPreference='Stop'"); + powershell.AddScript("Write-Debug \"AZURE_TEST_MODE = $($env:AZURE_TEST_MODE)\""); + powershell.AddScript("Write-Debug \"TEST_HTTPMOCK_OUTPUT = $($env:TEST_HTTPMOCK_OUTPUT)\""); + } + } +} diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 new file mode 100644 index 000000000000..e6d5a826126b --- /dev/null +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 @@ -0,0 +1,175 @@ + +##. .\Utility.ps1 + +$waitInterval = 60 * 5 + +function CreateCloudCollection([string] $Collection) +{ + $regionList = Get-AzureRemoteAppLocation | % Name + $region = Get-Random -InputObject $regionList + Assert -Condition {-not [String]::IsNullOrWhiteSpace($region)} + + $templateList = Get-AzureRemoteAppTemplateImage | ? Type -eq Platform + $candidateTemplate = $templateList | ? {$_.RegionList -contains $region} + Assert({$candidateTemplate -ne $null}) + $template = Get-Random -InputObject $candidateTemplate + Assert -Condition {$template -ne $null} + + $billingPlans = Get-AzureRemoteAppPlan | % Name + $billingPlan = Get-Random -InputObject $billingPlans + Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)} + + echo "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($template.Name) -Plan $billingPlan -Location $region -Description 'Test Collection'" + $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $template.Name -Plan $billingPlan -Location $region -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $curTime = Get-Date + do + { + echo "Waiting current time: $(Get-Date)" + sleep -Seconds $waitInterval + + $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + echo "Collection state: $($collectionState.Status)" + } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + echo "State of collection is $($collectionState.Status)" + $Collection +} + + +function PublishRemoteApplications([string] $Collection) +{ + $numOfApps = 5 + $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + + $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $programsToPublish = Get-Random -InputObject $availablePrograms -Count 5 + Assert({$programsToPublish.Count -eq $numOfApps}) + $applications = $programsToPublish | % { + Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $publishedPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + Assert -Condition {($publishedPrograms.Count-$currentPrograms.Count) -eq $numOfApps} + + $applications +} + + +function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) +{ + $msaUsers | % { + Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $addedUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + Assert -Condition {$addedUsers.Count -ge $msaUsers.Count} + + $addedUsers | select Name, UserIdType +} + +function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) +{ + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $msaUsers | % { + Remove-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + Assert -Condition {$currentUsers.Count -eq ($previousUsers.Count-$msaUsers.Count)} +} + +function UnpublishRemoteApplications([string] $Collection, [string[]] $applications) +{ + $applications | % { + Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $previouApps = get-AzureRemoteAppProgram $Collection | % Alias + + $collisions = $previouApps | ? {$applications -contains $_} + Assert -Condition {$collisions.Count -eq 0} +} + +function DeleteRemoteAppCollection([string] $Collection) +{ + $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection + $curTime = Get-Date + do + { + echo "Waiting current time: $(Get-Date)" + sleep -Seconds $waitInterval + + $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + echo "Collection state: $($collectionState.Status)" + } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') +} + + +function CheckinTest() +{ + $collection = 'CICollection' + $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com" + + CreateCloudCollection $collection +<# + $applications = PublishRemoteApplications $collection + AddRemoteAppUsers $collection $msaUsers + RemoveRemoteAppUsers $collection $msaUsers + UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias}) +#> + DeleteRemoteAppCollection $collection +} \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 new file mode 100644 index 000000000000..c8daff102266 --- /dev/null +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 @@ -0,0 +1,81 @@ + +[string] $eol = "`r`n" + +function Get-RandomName +{ +[CmdletBinding()] param ( + [parameter(Mandatory=$false)] + [string] $name, + [int] $count = 12 + ) + $suffix = -join $(Get-Random -InputObject 'a0b1c2d3e5f6g6h7i8j9k0l1m2n3o4p5q6r7s8t9u0v1w2z3y4z'.ToCharArray() -Count $Count) + if ($suffix -ne '') + { + "$name$suffix" + } + else + { + "$name" + } +} + +function Is-RunningAsAdmin +{ + $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() + $windowsPrincipal = new-object System.Security.Principal.WindowsPrincipal($windowsIdentity) + $administratorRole = [System.Security.Principal.WindowsBuiltInRole]::Administrator + $isRunningAsAdmin = $windowsPrincipal.IsInRole($administratorRole) + return $isRunningAsAdmin +} + +function New_Log([string] $fileName) +{ + $i=1 + while ((Test-Path "$fileName-$i.txt")) + { + $i++ + } + $folder = Split-Path -Path $fileName-$i.txt -Parent + if ((Test-Path $folder)) + { + $Script:Test_LogFile = "$fileName-$i.txt" + $Script:LOGGING = $true + $Script:Test_LogFile + } +} + +function Open-Log([string] $fileName) +{ + if ((Test-Path $fileName)) + { + $Script:Test_LogFile = $fileName + $Script:LOGGING = $true + } +} + +function Write-Log([string] $msg, [bool] $EndOfLine = $true) +{ + if ($eol) + { + $msg += $eol + } + + if ($LOGGING) + { + Write-Output "$msg" | Out-File -FilePath $Test_LogFile -Append + } +} + +function echo([string] $msg,[bool] $EndOfLine = $true) +{ + Write_Log $msg + Write-Host $msg +} + +function Assert([ScriptBlock] $Condition) +{ + if ((& $Condition) -eq $false) + { + throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" + } +} diff --git a/src/Common/Commands.ScenarioTest/packages.config b/src/Common/Commands.ScenarioTest/packages.config index 26d473d009cf..9d2e758cb9e3 100644 --- a/src/Common/Commands.ScenarioTest/packages.config +++ b/src/Common/Commands.ScenarioTest/packages.config @@ -4,6 +4,7 @@ + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index e0ba8eab9e05..d55f798e0e1d 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -69,8 +69,7 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False + ..\..\..\packages\Microsoft.Azure.Management.RemoteApp.1.0.9\lib\net40\Microsoft.Azure.Management.RemoteApp.dll diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs index 782956c801e1..585ae132bba2 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs @@ -69,7 +69,7 @@ public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second) } } - private bool ProccessUsers(SecurityPrincipalInfoListResult response) + private bool ProccessUsers(SecurityPrincipalInfoResult response) { ConsentStatusModel model = null; bool found = false; @@ -126,7 +126,7 @@ private bool ProccessUsers(SecurityPrincipalInfoListResult response) } public override void ExecuteCmdlet() { - SecurityPrincipalInfoListResult response = null; + SecurityPrincipalInfoResult response = null; bool found = false; showAllUsers = String.IsNullOrWhiteSpace(UserUpn); From b4f2ab907095350075f6e9234aef71ef5e0e1a1f Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Tue, 5 May 2015 11:38:03 -0700 Subject: [PATCH 05/58] Adding Checkin Tests to Azure RemoteApp --- .../Commands.ScenarioTest.csproj | 15 +- .../RemoteAppTests/CreateCloudCollection.cs | 24 +- .../Resources/RemoteApp/RemoteAppCI_Test.ps1 | 157 +- .../RemoteApp/TestRemoteAppEndToEnd.json | 2354 +++++++++++++++++ .../Resources/RemoteApp/Utility.ps1 | 81 - .../TestRemoteAppEndToEnd.json | 2354 +++++++++++++++++ 6 files changed, 4841 insertions(+), 144 deletions(-) create mode 100644 src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json delete mode 100644 src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 create mode 100644 src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index ffebafa759c7..cc43ab99cab7 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -180,6 +180,12 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + PreserveNewest @@ -201,6 +207,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -280,7 +289,7 @@ Resources.resx - + @@ -508,9 +517,7 @@ PreserveNewest - - - + diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs index 978a25621e09..e07fde2b0648 100644 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs +++ b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs @@ -2,35 +2,17 @@ using Microsoft.Azure.Test; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Management.Automation; using System.IO; using System.Linq; +using System.Management.Automation; using Xunit; -using Microsoft.Azure.Management.RemoteApp; namespace Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests { public class CreateCloudCollection { - private EnvironmentSetupHelper helper = null; - - protected void SetupManagementClients() - { - StorageManagementClient managedCacheClient = GetManagedCacheClient(); - helper = new EnvironmentSetupHelper(); - helper.SetupManagementClients(managedCacheClient); - helper.SetupSomeOfManagementClients(); - } - - - protected void SetupAzureEnvironment() - { - EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); - helper.SetupEnvironment(AzureModule.AzureServiceManagement); - } - protected Collection RunPowerShellTest(params string[] scripts) { using (UndoContext context = UndoContext.Current) @@ -59,9 +41,9 @@ protected Collection RunPowerShellTest(params string[] scripts) [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void CheckinTest() + public void TestRemoteAppEndToEnd() { - RunPowerShellTest("CheckinTest"); + RunPowerShellTest("TestRemoteAppEndToEnd"); } } } diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 index e6d5a826126b..3eb096b90492 100644 --- a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 @@ -1,36 +1,77 @@ - -##. .\Utility.ps1 + Set-Variable -Name VerbosePreference -Value Continue -$waitInterval = 60 * 5 +function PollingInterval() +{ + if ($env:AZURE_TEST_MODE -eq 'Playback') + { + $pollingIntervalSecs = 5 + } + else + { + $pollingIntervalSecs = 60 * 5 + } + $pollingIntervalSecs +} +function Assert([ScriptBlock] $Condition) +{ + if ((& $Condition) -eq $false) + { + throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" + } +} + +<# + This will pick a location, image, billing plan and create a ARA App collection and returns the collection name. +#> function CreateCloudCollection([string] $Collection) { - $regionList = Get-AzureRemoteAppLocation | % Name - $region = Get-Random -InputObject $regionList - Assert -Condition {-not [String]::IsNullOrWhiteSpace($region)} - $templateList = Get-AzureRemoteAppTemplateImage | ? Type -eq Platform - $candidateTemplate = $templateList | ? {$_.RegionList -contains $region} - Assert({$candidateTemplate -ne $null}) - $template = Get-Random -InputObject $candidateTemplate - Assert -Condition {$template -ne $null} + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + [PSObject[]] $locationList = Get-AzureRemoteAppLocation | % Name + Assert -Condition {$locationList -ne $null -or $locationList.Count -lt 1} + + [PSObject[]] $templateImageList = Get-AzureRemoteAppTemplateImage | ? {$_.Type -eq 'Platform' -and $_.OfficeType -ne 'Office365'} + Assert -Condition {$templateImageList -ne $null -or $templateImageList.Count -lt 1} + + $templateImage = $null + $locCounter = 0 + $imageCounter = 0 + $found = $false + do + { + $location = $locationList[$locCounter] + do + { + $templateImage = $templateImageList[$imageCounter] + if ($templateImage.RegionList -contains $location) + { + $found = $true + } + + $imageCounter++ + } while ($imageCounter -lt $templateImageList.Count -and -not $found) + + $locCounter++ + } while ($locCounter -lt $locationList.Count -and -not $found) + + Assert -Condition {$found} $billingPlans = Get-AzureRemoteAppPlan | % Name - $billingPlan = Get-Random -InputObject $billingPlans + $billingPlan = $billingPlans[0] Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)} - echo "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($template.Name) -Plan $billingPlan -Location $region -Description 'Test Collection'" - $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $template.Name -Plan $billingPlan -Location $region -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er + Write-Verbose "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($templateImage.Name) -Plan $billingPlan -Location $location -Description 'Test Collection'" + $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $templateImage.Name -Plan $billingPlan -Location $location -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { throw $er } - $curTime = Get-Date do { - echo "Waiting current time: $(Get-Date)" - sleep -Seconds $waitInterval + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -38,16 +79,20 @@ function CreateCloudCollection([string] $Collection) throw $er } - echo "Collection state: $($collectionState.Status)" + Write-Verbose "Collection state: $($collectionState.Status)" } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') - echo "State of collection is $($collectionState.Status)" - $Collection + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) succsssfully created this collection $Collection" } +<# + This will pick a 5 applications to publish, verifies that they've been published and returns the Publishing Info. +#> function PublishRemoteApplications([string] $Collection) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $numOfApps = 5 $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -55,6 +100,7 @@ function PublishRemoteApplications([string] $Collection) throw $er } + Assert({$availablePrograms.Count -ge $numOfApps}) $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -62,9 +108,10 @@ function PublishRemoteApplications([string] $Collection) throw $er } - $programsToPublish = Get-Random -InputObject $availablePrograms -Count 5 + $programsToPublish = $availablePrograms[0..2] + $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)] Assert({$programsToPublish.Count -eq $numOfApps}) - $applications = $programsToPublish | % { + $Script:applications = $programsToPublish | % { Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { @@ -77,14 +124,28 @@ function PublishRemoteApplications([string] $Collection) { throw $er } - Assert -Condition {($publishedPrograms.Count-$currentPrograms.Count) -eq $numOfApps} + + Assert -Condition {($publishedPrograms.Count - $currentPrograms.Count) -eq $numOfApps} + + $applications | % {Write-Verbose "($([IO.FileInfo]$_.ApplicationVirtualPath))"} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" $applications } +<# + This will pick a add the given users to the collection. +#> function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + $msaUsers | % { Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -93,18 +154,24 @@ function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) } } - $addedUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { throw $er } - Assert -Condition {$addedUsers.Count -ge $msaUsers.Count} - $addedUsers | select Name, UserIdType + Assert -Condition {($previousUsers.Count + $msaUsers.Count) -eq $currentUsers.Count} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" + + $currentUsers | % {Write-Verbose "Username: $($_.Name),and Type: $($_.UserIdType)" } } +<# + This will remove the given users from the collection. +#> function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { @@ -120,11 +187,16 @@ function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) } $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er - Assert -Condition {$currentUsers.Count -eq ($previousUsers.Count-$msaUsers.Count)} + Assert -Condition {$currentUsers -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" } +<# + This will unpublish the specified applications from the collection. +#> function UnpublishRemoteApplications([string] $Collection, [string[]] $applications) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $applications | % { Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -133,20 +205,26 @@ function UnpublishRemoteApplications([string] $Collection, [string[]] $applicati } } - $previouApps = get-AzureRemoteAppProgram $Collection | % Alias + Sleep 60 # seconds + $remainingApps = Get-AzureRemoteAppProgram $Collection | % Alias - $collisions = $previouApps | ? {$applications -contains $_} - Assert -Condition {$collisions.Count -eq 0} + $failedToUnpublish = $remainingApps | ? {$applications -contains $_} + Assert -Condition {$failedToUnpublish -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" } +<# + This delete the collection +#> function DeleteRemoteAppCollection([string] $Collection) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection - $curTime = Get-Date + do { - echo "Waiting current time: $(Get-Date)" - sleep -Seconds $waitInterval + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -154,22 +232,25 @@ function DeleteRemoteAppCollection([string] $Collection) throw $er } - echo "Collection state: $($collectionState.Status)" + Write-Verbose "Collection state: $($collectionState.Status)" } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" } -function CheckinTest() +function TestRemoteAppEndToEnd() { $collection = 'CICollection' $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com" + Write-Verbose "Starting current time: $(Get-Date)" CreateCloudCollection $collection -<# $applications = PublishRemoteApplications $collection AddRemoteAppUsers $collection $msaUsers RemoveRemoteAppUsers $collection $msaUsers UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias}) -#> DeleteRemoteAppCollection $collection -} \ No newline at end of file + Write-Verbose "Done current time: $(Get-Date)" +} diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json new file mode 100644 index 000000000000..11d0c0b43f0c --- /dev/null +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json @@ -0,0 +1,2354 @@ +{ + "Entries": [ + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/locations?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvbG9jYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "448d4c96648c918ca83b2e45dc33a5d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:27 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/templateImages?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvdGVtcGxhdGVJbWFnZXM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadSetupTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "307009dc308192f4a4c128164d66fde6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:29 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/BillingPlans?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvQmlsbGluZ1BsYW5zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a8ffa5a4b6f97a99acb2554eef6b999" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:32 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdst15&action=register", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3QxNSZhY3Rpb249cmVnaXN0ZXI=", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The resource type rdst15 is already registered for this subscription.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5c2f34469c2091cbaba9c41c801672f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections?PopulateOnly=false&api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnM/UG9wdWxhdGVPbmx5PWZhbHNlJmFwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "309" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-remoteapp-operation-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-ms-request-id": [ + "3ba27ab674089a27b09f6b7ad9d801a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d14e97697ae292a7a3c17bd8ce98addc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:56:42 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "dfc908b82cbd90c79d0abaa40b52dfae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:01:44 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b44214d2dfe9d8eb54731a5ddfa45ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:06:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ea1a4368a1579bd381143dd28a1d3f99" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:11:48 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c7e28ae5492a972a9240f05c8b6cb2a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:16:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "20e4edbacc1e900aa95c45913c4ccba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/05e77332-a97a-4229-8e58-b17bf9829761.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z7Uf%2Bx4nEL6i%2FTqz1HX2sB8jexvXu3JOjixT44Qlq4A%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5b3039f5-2729-44ec-86b7-52df2cf25803.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=DlXfzsmGVI3VVVTFiz2Jm19emdy5r%2BWdCrYwWXYEEc8%3D\",\r\n \"Id\": \"04e6cae2-c709-4aba-a568-2b4aaad32af2\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ce329c74-2eeb-42fc-8d56-ee874412fb30.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=h%2B1uovb1klRqMQ5AKwjoxXS4EuRG9e3YJNuburqcGz0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1574b8fc-3b6e-4d16-a3c6-74c4931b95ae.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=NokEpBAqyb4Y2%2BhcDYW1JSzgm91B2gYOAq%2BBxTkFhNE%3D\",\r\n \"Id\": \"1d49a298-6656-4511-be81-2ac881850488\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/604f0e64-d126-41d8-a381-2239367eb2a4.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AaYlatL1nhSyw4osVtoqY%2BygCGCOOIoBy38lkDe3t7U%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/816715c7-3312-467a-a1ca-5ed444af3283.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=Y0ciz0xVl43Ra0qVkfmoy1XxdWj39WaUoeucbEjavkw%3D\",\r\n \"Id\": \"33f09af8-beec-4e14-94fd-2cdc3de17cb7\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/2bd21834-16bd-4da0-bb48-11bf8df0ea91.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=7pmcPTALDiCYZGXI%2FAzDZ06VM5rq7xXD185MRqamuss%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d8b53b21-4f21-4c18-ab95-8b6b31a84afe.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sJl%2BMYRcgb84J7yNZOW3powJbqYumJbzOr6n7W1SDtY%3D\",\r\n \"Id\": \"390e1a34-b1a2-49f5-9df5-533e8aad7a3b\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=87IpVvdQIS8VmwwUh8VbiwOei5ZtpU8Y%2FQl886GRQj4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=4A1fU0s1zWsc7OVGrTgEKGen%2F3sykTaa68KPERQ5kfY%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0d6f1c85-fcb9-4698-817c-73bd05281691.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=A%2B3V1L8L1X4Po1gqqDBwrDX1I230F2FxYEms%2F8CluBU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/f4074b68-b286-484e-b083-5d3e8363e6e5.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2tq%2F37I3cyXuEiSviesgMKYi1JoEzkP5nQihD%2BBBaww%3D\",\r\n \"Id\": \"5c4805e2-86f4-491f-9c10-ba6a2e267911\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/00d254ac-bcc3-42e5-90db-2c25f2a04cd5.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z1Rb70VAsAP0NuRi%2BZx6xEnLAu2%2FtWshOQOKhs7D%2FSM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6439cb47-115a-4e44-8176-8de3a918646a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=GY1KLpWFdXDzbdCDr3r3YLIrQnshWFivNSuDvDW80BU%3D\",\r\n \"Id\": \"5eb6b22b-ffc5-43e0-9803-4e29da7d6234\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7579deff-c2e4-41cd-a9a4-e02a49db4f60.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ujuopqFiqaUa1ICgb8ljscn37mWlB3r5I4E%2F%2FyVHXOI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/365e164c-d7af-4863-ba77-a48558b8458b.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=YdFIVPf1H1wL5sa2RGujzBaVt8xis3EaQGQu0XH2Cqg%3D\",\r\n \"Id\": \"834154e8-f861-4219-b0aa-d87e2c255a42\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/12570dff-3822-41e4-9e17-1f4fea892d9b.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=J68jFrl%2FPOMQ%2BpM29zUX8UxSrf31tKJoX7pZrphtPXY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/c16b21b3-6ea2-4626-aa91-bcef76fa8871.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=glNyJIY2QAbAcky2dF05vVyezADt6OuRdBu%2FFNt5DcI%3D\",\r\n \"Id\": \"8c5bf021-e463-47d7-919d-58335de607c3\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=8PXQmasBPrJKDiOHLlpUc%2BxLeH3ZOT3Pd8jI%2FSOlj%2B4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=xKoTDx%2F8%2BmHsXmgq1SupUT0S6JOW%2BEkRGXIqljA%2FjEA%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0a51d73f-4c70-4634-af86-5cc5b82042e8.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=iHKJ7horBhzzk9DpNyRqsKtAWK1Uv23sYPLx8LPMgJI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ebb41248-2a4b-4894-bef4-152d82a688dc.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=E0qUTBIKwUUtgAu2zafBCB10s%2BDOBYWap9zNwiwI85c%3D\",\r\n \"Id\": \"90cf8d5e-b215-444e-b789-a3e7924716d8\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=5PtQgbIpCY5qk9Mib%2FHLFp0qFGuf2C6XxfIjH4RHlpA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=aiSPkSni8acvqz%2BDqDpaqi9KFvG9O%2Fo0vv3KIN%2FmLgk%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/300ffed8-2db3-4c64-9dc9-b7b16ecc1b08.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=1chXUKs8oMepb57ndP5zAysGSsE4BlcYo6gTRAKZxOY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/436a2ad1-86c9-4cca-8669-bfead5e7d1c4.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2n%2FhSvhpaDrsNtR1Qx7jig1O%2BCYYKYM9dZkeDHbB2Fw%3D\",\r\n \"Id\": \"a79fbcbf-fa64-4d37-8098-eb31b713255d\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=I28L%2FK5TP8KlkfWJT1RS%2F3A1rjH38blU2o%2Fbk8RojwA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=eceYh8ADxLAH3k9P3CMfXLkHf1JVT4XXdPB%2BOI%2BTKq4%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/39dd5826-7a73-4a56-b0d7-c6c4aaed3cf3.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AkWpiCZyzuD%2FxcWTm7yduEd2OcAkhuNhV%2BcpTYvyQik%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/a1bd2f0d-6316-4680-bd6c-f9db873abed3.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ffpeM%2BN8EghHjgOCkpeAoGzsztoK492aJ%2FrePZuMPNo%3D\",\r\n \"Id\": \"cba99c82-a138-4c4a-93c1-d7c75c096649\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=RPnIFAfS2e4vHauUluQEnnhKI8dVMbP%2B5CdwPpgslNM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=dKWYcYRE2xZw2Vfp9ilOfsgbDD1nE0f6G0MJMSfdPXE%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6b566fe3-88ee-4421-a87d-f66df361f0d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=tDyk%2B2OAfTFLpfm3CHLbduHpZjTpyn9TON5RR%2Fhh7M8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6ebee49b-9b8b-4371-b058-0468ddbf1257.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sr5VM1r3qbzQ%2FUigoqqGye%2FkvOTe4rddEoj3%2B4MRj64%3D\",\r\n \"Id\": \"dcde01c2-6e75-42cc-a26a-c4f9b87281ab\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/be40d0a0-e1df-4e87-8b4b-373a5b00277f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ARXtQrxckijoh1E8Q1%2Fo%2F%2B5HQNX%2Bpa7owZBb75U16T0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7fa93ba9-1bf0-4028-a79e-b1db1128c43a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=9P3DpdpS3v0t4iw6wDLzt3rb3s5CXuY0o0%2BWgueEmes%3D\",\r\n \"Id\": \"f3414418-5f96-4f2d-82ea-89276bf82227\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "11410" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "b69bd447aae99c65a61278a2e3d9d8d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=y%2FO5lD4KpYASNyyh5LXSFMsooXb3j04oGpdgykbIeo4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=xObgseHegIC4XiBXwIhVcj3kx68Y%2FnuDLeDBstYo%2BR8%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0f55ca20ef899697bfdcc5f34f0359ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:58 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=uSa0OyO4UT68QPloavZCEZK6GZA%2BgcnzxldvxMLiy70%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=GbejIboQ6ebbJ5tWpBqV0DilgP1b7FBWn5Zq4rj4r1M%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/83d8e64a-6225-4138-9d30-3c3b00510215.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=wLHunz58EdWo8inXERoTwJINd76Q0oyWVVTHKeELKnw%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/4d578ff4-9b86-4abd-a96e-c35ee261169a.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=FNZJPQmxO%2Fm2hTBGfG%2Fut3%2FIrZkIEypBBFGLu7ymyVc%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"Alias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "3557" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35e85864e8c490b3a3697dbdbd51d3c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=JmMEY9ZakuxaNNYCgOswgTE%2BWohXBMcOoO1QqVLdehE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=rZxBTVhYaTsiTW9i6g6%2FWavwoDPN21TxhS9alv0U5Uc%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a7e297ca2c049d9aa5b436227e71cf8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/bcbefc29-6de6-4e6e-b130-d92002966e2c?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvYmNiZWZjMjktNmRlNi00ZTZlLWIxMzAtZDkyMDAyOTY2ZTJjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "58855f72b51e9655a064b86154978f10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "747" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "419cbb93e16e9315ab040d08700b0273" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "764" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b86fe10fda4922da1d8b4f6a64de68a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "735" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "036619463e069ebbb1d095911bb5e3fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "751" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "601a6dc4372b93a39b93d0afda1b4658" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:15 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "744" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "298036e4e4ce9014ab0786c56b96edd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/db0205ad-1d77-4087-b142-5d8065f76224?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvZGIwMjA1YWQtMWQ3Ny00MDg3LWIxNDItNWQ4MDY1Zjc2MjI0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8971af2234b29cc487fcfc6915b1d31f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:05 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/8c846901-f75a-4742-90d6-137223b52da7?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOGM4NDY5MDEtZjc1YS00NzQyLTkwZDYtMTM3MjIzYjUyZGE3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "33f18646622a95d0bfc56d3f2bc42d5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:09 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/45bca3f6-056f-48e9-8f8c-ebcc5b929b55?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvNDViY2EzZjYtMDU2Zi00OGU5LThmOGMtZWJjYzViOTI5YjU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ed149286dd4e97caaddc55dc9d72430d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOWM2OTRiNmMtNWYyMi00ZDNiLWEyOGMtZGFlOThhNmFiNmMxP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e14659fd70f59e958308892c7a98c38f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "136197bb86c790a0bdb54d83a2d5cf37" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:23 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1805f417ff199633af674262055e6ee3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8d9fd191a1c6983997110132ff733eee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "25c9d5d4b79b95aa85301cc037e5edb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c47afdb3e52093668d7be31dfa81f795" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:25 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "fda0b9064af1947497799158f87040b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:28 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f6b4d0ccf1839159ac8b0721a71df9ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4a89e8fb15a094329565799f8999852b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:33 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "88ebb7a5793b9e5ba76b705939b2a262" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:37 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "67e3ffb32f209466a1980c014118a690" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35740d352cea99f7b00b8385fdb0bfd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:40 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4298340cfaaf9b66a9b545ac73065958" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:43 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"c902b11e-9d1d-45eb-82eb-6424f82c784f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2f25fa43b98093d9a99be1862fcdf718" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:46 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"f23d48cb-9512-4b27-a89a-990a6e7f068f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "37de324e3bb093638abe3d50a61d4034" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"fd337514-db28-4bec-b8d7-90843462755b\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a06b8f0f7b0893a1a67d7ab3a45e568a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:51 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"958f7c37-fc93-4a6b-9659-c18c70e81692\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f53f2deb9312976b9fd0334a24dab46d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "436b9a9762c49c7cb73d3fdd39148401" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-remoteapp-operation-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-ms-request-id": [ + "5dcdac48b48c9f71a72cfc4d52156020" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:59 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5fbf3a553cc4966294cd5a89755796dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:29:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4d880bd681c19e6da59e610d8c5c42c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:34:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "10a818d8f61c995baa0205f4a355c5bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:39:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1d51b83e712d9935819dc3a5b78ede3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:44:12 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0eb999375dba9392b7d22f22b1807f07" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:49:14 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e6763bbd194c9f0fae7955b31760d3db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:54:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1306d801dbc291329efbafee242cb888" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:59:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "21f939fe830a991386d0f93a304e1264" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 May 2015 00:04:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc" + } +} \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 deleted file mode 100644 index c8daff102266..000000000000 --- a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 +++ /dev/null @@ -1,81 +0,0 @@ - -[string] $eol = "`r`n" - -function Get-RandomName -{ -[CmdletBinding()] param ( - [parameter(Mandatory=$false)] - [string] $name, - [int] $count = 12 - ) - $suffix = -join $(Get-Random -InputObject 'a0b1c2d3e5f6g6h7i8j9k0l1m2n3o4p5q6r7s8t9u0v1w2z3y4z'.ToCharArray() -Count $Count) - if ($suffix -ne '') - { - "$name$suffix" - } - else - { - "$name" - } -} - -function Is-RunningAsAdmin -{ - $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() - $windowsPrincipal = new-object System.Security.Principal.WindowsPrincipal($windowsIdentity) - $administratorRole = [System.Security.Principal.WindowsBuiltInRole]::Administrator - $isRunningAsAdmin = $windowsPrincipal.IsInRole($administratorRole) - return $isRunningAsAdmin -} - -function New_Log([string] $fileName) -{ - $i=1 - while ((Test-Path "$fileName-$i.txt")) - { - $i++ - } - $folder = Split-Path -Path $fileName-$i.txt -Parent - if ((Test-Path $folder)) - { - $Script:Test_LogFile = "$fileName-$i.txt" - $Script:LOGGING = $true - $Script:Test_LogFile - } -} - -function Open-Log([string] $fileName) -{ - if ((Test-Path $fileName)) - { - $Script:Test_LogFile = $fileName - $Script:LOGGING = $true - } -} - -function Write-Log([string] $msg, [bool] $EndOfLine = $true) -{ - if ($eol) - { - $msg += $eol - } - - if ($LOGGING) - { - Write-Output "$msg" | Out-File -FilePath $Test_LogFile -Append - } -} - -function echo([string] $msg,[bool] $EndOfLine = $true) -{ - Write_Log $msg - Write-Host $msg -} - -function Assert([ScriptBlock] $Condition) -{ - if ((& $Condition) -eq $false) - { - throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" - } -} diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json new file mode 100644 index 000000000000..11d0c0b43f0c --- /dev/null +++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json @@ -0,0 +1,2354 @@ +{ + "Entries": [ + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/locations?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvbG9jYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "448d4c96648c918ca83b2e45dc33a5d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:27 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/templateImages?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvdGVtcGxhdGVJbWFnZXM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadSetupTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "307009dc308192f4a4c128164d66fde6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:29 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/BillingPlans?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvQmlsbGluZ1BsYW5zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a8ffa5a4b6f97a99acb2554eef6b999" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:32 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdst15&action=register", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3QxNSZhY3Rpb249cmVnaXN0ZXI=", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The resource type rdst15 is already registered for this subscription.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5c2f34469c2091cbaba9c41c801672f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections?PopulateOnly=false&api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnM/UG9wdWxhdGVPbmx5PWZhbHNlJmFwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "309" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-remoteapp-operation-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-ms-request-id": [ + "3ba27ab674089a27b09f6b7ad9d801a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d14e97697ae292a7a3c17bd8ce98addc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:56:42 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "dfc908b82cbd90c79d0abaa40b52dfae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:01:44 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b44214d2dfe9d8eb54731a5ddfa45ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:06:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ea1a4368a1579bd381143dd28a1d3f99" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:11:48 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c7e28ae5492a972a9240f05c8b6cb2a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:16:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "20e4edbacc1e900aa95c45913c4ccba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/05e77332-a97a-4229-8e58-b17bf9829761.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z7Uf%2Bx4nEL6i%2FTqz1HX2sB8jexvXu3JOjixT44Qlq4A%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5b3039f5-2729-44ec-86b7-52df2cf25803.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=DlXfzsmGVI3VVVTFiz2Jm19emdy5r%2BWdCrYwWXYEEc8%3D\",\r\n \"Id\": \"04e6cae2-c709-4aba-a568-2b4aaad32af2\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ce329c74-2eeb-42fc-8d56-ee874412fb30.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=h%2B1uovb1klRqMQ5AKwjoxXS4EuRG9e3YJNuburqcGz0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1574b8fc-3b6e-4d16-a3c6-74c4931b95ae.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=NokEpBAqyb4Y2%2BhcDYW1JSzgm91B2gYOAq%2BBxTkFhNE%3D\",\r\n \"Id\": \"1d49a298-6656-4511-be81-2ac881850488\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/604f0e64-d126-41d8-a381-2239367eb2a4.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AaYlatL1nhSyw4osVtoqY%2BygCGCOOIoBy38lkDe3t7U%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/816715c7-3312-467a-a1ca-5ed444af3283.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=Y0ciz0xVl43Ra0qVkfmoy1XxdWj39WaUoeucbEjavkw%3D\",\r\n \"Id\": \"33f09af8-beec-4e14-94fd-2cdc3de17cb7\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/2bd21834-16bd-4da0-bb48-11bf8df0ea91.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=7pmcPTALDiCYZGXI%2FAzDZ06VM5rq7xXD185MRqamuss%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d8b53b21-4f21-4c18-ab95-8b6b31a84afe.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sJl%2BMYRcgb84J7yNZOW3powJbqYumJbzOr6n7W1SDtY%3D\",\r\n \"Id\": \"390e1a34-b1a2-49f5-9df5-533e8aad7a3b\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=87IpVvdQIS8VmwwUh8VbiwOei5ZtpU8Y%2FQl886GRQj4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=4A1fU0s1zWsc7OVGrTgEKGen%2F3sykTaa68KPERQ5kfY%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0d6f1c85-fcb9-4698-817c-73bd05281691.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=A%2B3V1L8L1X4Po1gqqDBwrDX1I230F2FxYEms%2F8CluBU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/f4074b68-b286-484e-b083-5d3e8363e6e5.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2tq%2F37I3cyXuEiSviesgMKYi1JoEzkP5nQihD%2BBBaww%3D\",\r\n \"Id\": \"5c4805e2-86f4-491f-9c10-ba6a2e267911\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/00d254ac-bcc3-42e5-90db-2c25f2a04cd5.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z1Rb70VAsAP0NuRi%2BZx6xEnLAu2%2FtWshOQOKhs7D%2FSM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6439cb47-115a-4e44-8176-8de3a918646a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=GY1KLpWFdXDzbdCDr3r3YLIrQnshWFivNSuDvDW80BU%3D\",\r\n \"Id\": \"5eb6b22b-ffc5-43e0-9803-4e29da7d6234\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7579deff-c2e4-41cd-a9a4-e02a49db4f60.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ujuopqFiqaUa1ICgb8ljscn37mWlB3r5I4E%2F%2FyVHXOI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/365e164c-d7af-4863-ba77-a48558b8458b.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=YdFIVPf1H1wL5sa2RGujzBaVt8xis3EaQGQu0XH2Cqg%3D\",\r\n \"Id\": \"834154e8-f861-4219-b0aa-d87e2c255a42\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/12570dff-3822-41e4-9e17-1f4fea892d9b.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=J68jFrl%2FPOMQ%2BpM29zUX8UxSrf31tKJoX7pZrphtPXY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/c16b21b3-6ea2-4626-aa91-bcef76fa8871.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=glNyJIY2QAbAcky2dF05vVyezADt6OuRdBu%2FFNt5DcI%3D\",\r\n \"Id\": \"8c5bf021-e463-47d7-919d-58335de607c3\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=8PXQmasBPrJKDiOHLlpUc%2BxLeH3ZOT3Pd8jI%2FSOlj%2B4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=xKoTDx%2F8%2BmHsXmgq1SupUT0S6JOW%2BEkRGXIqljA%2FjEA%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0a51d73f-4c70-4634-af86-5cc5b82042e8.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=iHKJ7horBhzzk9DpNyRqsKtAWK1Uv23sYPLx8LPMgJI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ebb41248-2a4b-4894-bef4-152d82a688dc.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=E0qUTBIKwUUtgAu2zafBCB10s%2BDOBYWap9zNwiwI85c%3D\",\r\n \"Id\": \"90cf8d5e-b215-444e-b789-a3e7924716d8\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=5PtQgbIpCY5qk9Mib%2FHLFp0qFGuf2C6XxfIjH4RHlpA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=aiSPkSni8acvqz%2BDqDpaqi9KFvG9O%2Fo0vv3KIN%2FmLgk%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/300ffed8-2db3-4c64-9dc9-b7b16ecc1b08.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=1chXUKs8oMepb57ndP5zAysGSsE4BlcYo6gTRAKZxOY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/436a2ad1-86c9-4cca-8669-bfead5e7d1c4.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2n%2FhSvhpaDrsNtR1Qx7jig1O%2BCYYKYM9dZkeDHbB2Fw%3D\",\r\n \"Id\": \"a79fbcbf-fa64-4d37-8098-eb31b713255d\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=I28L%2FK5TP8KlkfWJT1RS%2F3A1rjH38blU2o%2Fbk8RojwA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=eceYh8ADxLAH3k9P3CMfXLkHf1JVT4XXdPB%2BOI%2BTKq4%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/39dd5826-7a73-4a56-b0d7-c6c4aaed3cf3.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AkWpiCZyzuD%2FxcWTm7yduEd2OcAkhuNhV%2BcpTYvyQik%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/a1bd2f0d-6316-4680-bd6c-f9db873abed3.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ffpeM%2BN8EghHjgOCkpeAoGzsztoK492aJ%2FrePZuMPNo%3D\",\r\n \"Id\": \"cba99c82-a138-4c4a-93c1-d7c75c096649\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=RPnIFAfS2e4vHauUluQEnnhKI8dVMbP%2B5CdwPpgslNM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=dKWYcYRE2xZw2Vfp9ilOfsgbDD1nE0f6G0MJMSfdPXE%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6b566fe3-88ee-4421-a87d-f66df361f0d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=tDyk%2B2OAfTFLpfm3CHLbduHpZjTpyn9TON5RR%2Fhh7M8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6ebee49b-9b8b-4371-b058-0468ddbf1257.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sr5VM1r3qbzQ%2FUigoqqGye%2FkvOTe4rddEoj3%2B4MRj64%3D\",\r\n \"Id\": \"dcde01c2-6e75-42cc-a26a-c4f9b87281ab\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/be40d0a0-e1df-4e87-8b4b-373a5b00277f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ARXtQrxckijoh1E8Q1%2Fo%2F%2B5HQNX%2Bpa7owZBb75U16T0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7fa93ba9-1bf0-4028-a79e-b1db1128c43a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=9P3DpdpS3v0t4iw6wDLzt3rb3s5CXuY0o0%2BWgueEmes%3D\",\r\n \"Id\": \"f3414418-5f96-4f2d-82ea-89276bf82227\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "11410" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "b69bd447aae99c65a61278a2e3d9d8d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=y%2FO5lD4KpYASNyyh5LXSFMsooXb3j04oGpdgykbIeo4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=xObgseHegIC4XiBXwIhVcj3kx68Y%2FnuDLeDBstYo%2BR8%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0f55ca20ef899697bfdcc5f34f0359ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:58 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=uSa0OyO4UT68QPloavZCEZK6GZA%2BgcnzxldvxMLiy70%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=GbejIboQ6ebbJ5tWpBqV0DilgP1b7FBWn5Zq4rj4r1M%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/83d8e64a-6225-4138-9d30-3c3b00510215.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=wLHunz58EdWo8inXERoTwJINd76Q0oyWVVTHKeELKnw%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/4d578ff4-9b86-4abd-a96e-c35ee261169a.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=FNZJPQmxO%2Fm2hTBGfG%2Fut3%2FIrZkIEypBBFGLu7ymyVc%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"Alias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "3557" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35e85864e8c490b3a3697dbdbd51d3c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=JmMEY9ZakuxaNNYCgOswgTE%2BWohXBMcOoO1QqVLdehE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=rZxBTVhYaTsiTW9i6g6%2FWavwoDPN21TxhS9alv0U5Uc%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a7e297ca2c049d9aa5b436227e71cf8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/bcbefc29-6de6-4e6e-b130-d92002966e2c?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvYmNiZWZjMjktNmRlNi00ZTZlLWIxMzAtZDkyMDAyOTY2ZTJjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "58855f72b51e9655a064b86154978f10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "747" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "419cbb93e16e9315ab040d08700b0273" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "764" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b86fe10fda4922da1d8b4f6a64de68a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "735" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "036619463e069ebbb1d095911bb5e3fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "751" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "601a6dc4372b93a39b93d0afda1b4658" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:15 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "744" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "298036e4e4ce9014ab0786c56b96edd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/db0205ad-1d77-4087-b142-5d8065f76224?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvZGIwMjA1YWQtMWQ3Ny00MDg3LWIxNDItNWQ4MDY1Zjc2MjI0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8971af2234b29cc487fcfc6915b1d31f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:05 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/8c846901-f75a-4742-90d6-137223b52da7?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOGM4NDY5MDEtZjc1YS00NzQyLTkwZDYtMTM3MjIzYjUyZGE3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "33f18646622a95d0bfc56d3f2bc42d5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:09 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/45bca3f6-056f-48e9-8f8c-ebcc5b929b55?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvNDViY2EzZjYtMDU2Zi00OGU5LThmOGMtZWJjYzViOTI5YjU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ed149286dd4e97caaddc55dc9d72430d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOWM2OTRiNmMtNWYyMi00ZDNiLWEyOGMtZGFlOThhNmFiNmMxP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e14659fd70f59e958308892c7a98c38f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "136197bb86c790a0bdb54d83a2d5cf37" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:23 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1805f417ff199633af674262055e6ee3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8d9fd191a1c6983997110132ff733eee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "25c9d5d4b79b95aa85301cc037e5edb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c47afdb3e52093668d7be31dfa81f795" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:25 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "fda0b9064af1947497799158f87040b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:28 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f6b4d0ccf1839159ac8b0721a71df9ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4a89e8fb15a094329565799f8999852b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:33 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "88ebb7a5793b9e5ba76b705939b2a262" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:37 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "67e3ffb32f209466a1980c014118a690" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35740d352cea99f7b00b8385fdb0bfd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:40 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4298340cfaaf9b66a9b545ac73065958" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:43 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"c902b11e-9d1d-45eb-82eb-6424f82c784f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2f25fa43b98093d9a99be1862fcdf718" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:46 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"f23d48cb-9512-4b27-a89a-990a6e7f068f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "37de324e3bb093638abe3d50a61d4034" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"fd337514-db28-4bec-b8d7-90843462755b\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a06b8f0f7b0893a1a67d7ab3a45e568a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:51 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"958f7c37-fc93-4a6b-9659-c18c70e81692\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f53f2deb9312976b9fd0334a24dab46d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "436b9a9762c49c7cb73d3fdd39148401" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-remoteapp-operation-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-ms-request-id": [ + "5dcdac48b48c9f71a72cfc4d52156020" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:59 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5fbf3a553cc4966294cd5a89755796dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:29:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4d880bd681c19e6da59e610d8c5c42c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:34:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "10a818d8f61c995baa0205f4a355c5bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:39:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1d51b83e712d9935819dc3a5b78ede3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:44:12 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0eb999375dba9392b7d22f22b1807f07" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:49:14 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e6763bbd194c9f0fae7955b31760d3db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:54:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1306d801dbc291329efbafee242cb888" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:59:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "21f939fe830a991386d0f93a304e1264" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 May 2015 00:04:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc" + } +} \ No newline at end of file From cff97c66b4fc9c16497b9ae82196c50ea284e4e7 Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Tue, 5 May 2015 11:38:03 -0700 Subject: [PATCH 06/58] Adding Checkin Tests to Azure RemoteApp --- .../Commands.ScenarioTest.csproj | 15 +- .../RemoteAppTests/CreateCloudCollection.cs | 24 +- .../Resources/RemoteApp/RemoteAppCI_Test.ps1 | 155 +- .../RemoteApp/TestRemoteAppEndToEnd.json | 2354 +++++++++++++++++ .../Resources/RemoteApp/Utility.ps1 | 81 - .../TestRemoteAppEndToEnd.json | 2354 +++++++++++++++++ 6 files changed, 4840 insertions(+), 143 deletions(-) create mode 100644 src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json delete mode 100644 src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 create mode 100644 src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index ffebafa759c7..cc43ab99cab7 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -180,6 +180,12 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + PreserveNewest @@ -201,6 +207,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -280,7 +289,7 @@ Resources.resx - + @@ -508,9 +517,7 @@ PreserveNewest - - - + diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs index 978a25621e09..e07fde2b0648 100644 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs +++ b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs @@ -2,35 +2,17 @@ using Microsoft.Azure.Test; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Management.Automation; using System.IO; using System.Linq; +using System.Management.Automation; using Xunit; -using Microsoft.Azure.Management.RemoteApp; namespace Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests { public class CreateCloudCollection { - private EnvironmentSetupHelper helper = null; - - protected void SetupManagementClients() - { - StorageManagementClient managedCacheClient = GetManagedCacheClient(); - helper = new EnvironmentSetupHelper(); - helper.SetupManagementClients(managedCacheClient); - helper.SetupSomeOfManagementClients(); - } - - - protected void SetupAzureEnvironment() - { - EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); - helper.SetupEnvironment(AzureModule.AzureServiceManagement); - } - protected Collection RunPowerShellTest(params string[] scripts) { using (UndoContext context = UndoContext.Current) @@ -59,9 +41,9 @@ protected Collection RunPowerShellTest(params string[] scripts) [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void CheckinTest() + public void TestRemoteAppEndToEnd() { - RunPowerShellTest("CheckinTest"); + RunPowerShellTest("TestRemoteAppEndToEnd"); } } } diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 index e6d5a826126b..597728053050 100644 --- a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 @@ -1,36 +1,77 @@ - -##. .\Utility.ps1 + Set-Variable -Name VerbosePreference -Value Continue -$waitInterval = 60 * 5 +function PollingInterval() +{ + if ($env:AZURE_TEST_MODE -eq 'Playback') + { + $pollingIntervalSecs = 5 + } + else + { + $pollingIntervalSecs = 60 * 5 + } + $pollingIntervalSecs +} +function Assert([ScriptBlock] $Condition) +{ + if ((& $Condition) -eq $false) + { + throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" + } +} + +<# + This will pick a location, image, billing plan and create a ARA App collection and returns the collection name. +#> function CreateCloudCollection([string] $Collection) { - $regionList = Get-AzureRemoteAppLocation | % Name - $region = Get-Random -InputObject $regionList - Assert -Condition {-not [String]::IsNullOrWhiteSpace($region)} - $templateList = Get-AzureRemoteAppTemplateImage | ? Type -eq Platform - $candidateTemplate = $templateList | ? {$_.RegionList -contains $region} - Assert({$candidateTemplate -ne $null}) - $template = Get-Random -InputObject $candidateTemplate - Assert -Condition {$template -ne $null} + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + [PSObject[]] $locationList = Get-AzureRemoteAppLocation | % Name + Assert -Condition {$locationList -ne $null -or $locationList.Count -lt 1} + + [PSObject[]] $templateImageList = Get-AzureRemoteAppTemplateImage | ? {$_.Type -eq 'Platform' -and $_.OfficeType -ne 'Office365'} + Assert -Condition {$templateImageList -ne $null -or $templateImageList.Count -lt 1} + + $templateImage = $null + $locCounter = 0 + $imageCounter = 0 + $found = $false + do + { + $location = $locationList[$locCounter] + do + { + $templateImage = $templateImageList[$imageCounter] + if ($templateImage.RegionList -contains $location) + { + $found = $true + } + + $imageCounter++ + } while ($imageCounter -lt $templateImageList.Count -and -not $found) + + $locCounter++ + } while ($locCounter -lt $locationList.Count -and -not $found) + + Assert -Condition {$found} $billingPlans = Get-AzureRemoteAppPlan | % Name - $billingPlan = Get-Random -InputObject $billingPlans + $billingPlan = $billingPlans[0] Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)} - echo "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($template.Name) -Plan $billingPlan -Location $region -Description 'Test Collection'" - $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $template.Name -Plan $billingPlan -Location $region -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er + Write-Verbose "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($templateImage.Name) -Plan $billingPlan -Location $location -Description 'Test Collection'" + $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $templateImage.Name -Plan $billingPlan -Location $location -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { throw $er } - $curTime = Get-Date do { - echo "Waiting current time: $(Get-Date)" - sleep -Seconds $waitInterval + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -38,16 +79,20 @@ function CreateCloudCollection([string] $Collection) throw $er } - echo "Collection state: $($collectionState.Status)" + Write-Verbose "Collection state: $($collectionState.Status)" } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') - echo "State of collection is $($collectionState.Status)" - $Collection + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) succsssfully created this collection $Collection" } +<# + This will pick a 5 applications to publish, verifies that they've been published and returns the Publishing Info. +#> function PublishRemoteApplications([string] $Collection) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $numOfApps = 5 $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -55,6 +100,7 @@ function PublishRemoteApplications([string] $Collection) throw $er } + Assert({$availablePrograms.Count -ge $numOfApps}) $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -62,7 +108,8 @@ function PublishRemoteApplications([string] $Collection) throw $er } - $programsToPublish = Get-Random -InputObject $availablePrograms -Count 5 + $programsToPublish = $availablePrograms[0..2] + $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)] Assert({$programsToPublish.Count -eq $numOfApps}) $applications = $programsToPublish | % { Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er @@ -77,14 +124,28 @@ function PublishRemoteApplications([string] $Collection) { throw $er } - Assert -Condition {($publishedPrograms.Count-$currentPrograms.Count) -eq $numOfApps} + + Assert -Condition {($publishedPrograms.Count - $currentPrograms.Count) -eq $numOfApps} + + $applications | % {Write-Verbose "($([IO.FileInfo]$_.ApplicationVirtualPath))"} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" $applications } +<# + This will pick a add the given users to the collection. +#> function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + $msaUsers | % { Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -93,18 +154,24 @@ function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) } } - $addedUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { throw $er } - Assert -Condition {$addedUsers.Count -ge $msaUsers.Count} - $addedUsers | select Name, UserIdType + Assert -Condition {($previousUsers.Count + $msaUsers.Count) -eq $currentUsers.Count} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" + + $currentUsers | % {Write-Verbose "Username: $($_.Name),and Type: $($_.UserIdType)" } } +<# + This will remove the given users from the collection. +#> function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { @@ -120,11 +187,16 @@ function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) } $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er - Assert -Condition {$currentUsers.Count -eq ($previousUsers.Count-$msaUsers.Count)} + Assert -Condition {$currentUsers -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" } +<# + This will unpublish the specified applications from the collection. +#> function UnpublishRemoteApplications([string] $Collection, [string[]] $applications) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $applications | % { Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -133,20 +205,26 @@ function UnpublishRemoteApplications([string] $Collection, [string[]] $applicati } } - $previouApps = get-AzureRemoteAppProgram $Collection | % Alias + Sleep 60 # seconds + $remainingApps = Get-AzureRemoteAppProgram $Collection | % Alias - $collisions = $previouApps | ? {$applications -contains $_} - Assert -Condition {$collisions.Count -eq 0} + $failedToUnpublish = $remainingApps | ? {$applications -contains $_} + Assert -Condition {$failedToUnpublish -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" } +<# + This delete the collection +#> function DeleteRemoteAppCollection([string] $Collection) { + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection - $curTime = Get-Date + do { - echo "Waiting current time: $(Get-Date)" - sleep -Seconds $waitInterval + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) @@ -154,22 +232,25 @@ function DeleteRemoteAppCollection([string] $Collection) throw $er } - echo "Collection state: $($collectionState.Status)" + Write-Verbose "Collection state: $($collectionState.Status)" } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" } -function CheckinTest() +function TestRemoteAppEndToEnd() { $collection = 'CICollection' $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com" + Write-Verbose "Starting current time: $(Get-Date)" CreateCloudCollection $collection -<# $applications = PublishRemoteApplications $collection AddRemoteAppUsers $collection $msaUsers RemoveRemoteAppUsers $collection $msaUsers UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias}) -#> DeleteRemoteAppCollection $collection -} \ No newline at end of file + Write-Verbose "Done current time: $(Get-Date)" +} diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json new file mode 100644 index 000000000000..11d0c0b43f0c --- /dev/null +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json @@ -0,0 +1,2354 @@ +{ + "Entries": [ + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/locations?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvbG9jYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "448d4c96648c918ca83b2e45dc33a5d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:27 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/templateImages?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvdGVtcGxhdGVJbWFnZXM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadSetupTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "307009dc308192f4a4c128164d66fde6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:29 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/BillingPlans?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvQmlsbGluZ1BsYW5zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a8ffa5a4b6f97a99acb2554eef6b999" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:32 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdst15&action=register", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3QxNSZhY3Rpb249cmVnaXN0ZXI=", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The resource type rdst15 is already registered for this subscription.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5c2f34469c2091cbaba9c41c801672f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections?PopulateOnly=false&api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnM/UG9wdWxhdGVPbmx5PWZhbHNlJmFwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "309" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-remoteapp-operation-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-ms-request-id": [ + "3ba27ab674089a27b09f6b7ad9d801a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d14e97697ae292a7a3c17bd8ce98addc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:56:42 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "dfc908b82cbd90c79d0abaa40b52dfae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:01:44 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b44214d2dfe9d8eb54731a5ddfa45ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:06:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ea1a4368a1579bd381143dd28a1d3f99" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:11:48 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c7e28ae5492a972a9240f05c8b6cb2a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:16:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "20e4edbacc1e900aa95c45913c4ccba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/05e77332-a97a-4229-8e58-b17bf9829761.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z7Uf%2Bx4nEL6i%2FTqz1HX2sB8jexvXu3JOjixT44Qlq4A%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5b3039f5-2729-44ec-86b7-52df2cf25803.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=DlXfzsmGVI3VVVTFiz2Jm19emdy5r%2BWdCrYwWXYEEc8%3D\",\r\n \"Id\": \"04e6cae2-c709-4aba-a568-2b4aaad32af2\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ce329c74-2eeb-42fc-8d56-ee874412fb30.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=h%2B1uovb1klRqMQ5AKwjoxXS4EuRG9e3YJNuburqcGz0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1574b8fc-3b6e-4d16-a3c6-74c4931b95ae.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=NokEpBAqyb4Y2%2BhcDYW1JSzgm91B2gYOAq%2BBxTkFhNE%3D\",\r\n \"Id\": \"1d49a298-6656-4511-be81-2ac881850488\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/604f0e64-d126-41d8-a381-2239367eb2a4.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AaYlatL1nhSyw4osVtoqY%2BygCGCOOIoBy38lkDe3t7U%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/816715c7-3312-467a-a1ca-5ed444af3283.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=Y0ciz0xVl43Ra0qVkfmoy1XxdWj39WaUoeucbEjavkw%3D\",\r\n \"Id\": \"33f09af8-beec-4e14-94fd-2cdc3de17cb7\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/2bd21834-16bd-4da0-bb48-11bf8df0ea91.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=7pmcPTALDiCYZGXI%2FAzDZ06VM5rq7xXD185MRqamuss%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d8b53b21-4f21-4c18-ab95-8b6b31a84afe.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sJl%2BMYRcgb84J7yNZOW3powJbqYumJbzOr6n7W1SDtY%3D\",\r\n \"Id\": \"390e1a34-b1a2-49f5-9df5-533e8aad7a3b\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=87IpVvdQIS8VmwwUh8VbiwOei5ZtpU8Y%2FQl886GRQj4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=4A1fU0s1zWsc7OVGrTgEKGen%2F3sykTaa68KPERQ5kfY%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0d6f1c85-fcb9-4698-817c-73bd05281691.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=A%2B3V1L8L1X4Po1gqqDBwrDX1I230F2FxYEms%2F8CluBU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/f4074b68-b286-484e-b083-5d3e8363e6e5.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2tq%2F37I3cyXuEiSviesgMKYi1JoEzkP5nQihD%2BBBaww%3D\",\r\n \"Id\": \"5c4805e2-86f4-491f-9c10-ba6a2e267911\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/00d254ac-bcc3-42e5-90db-2c25f2a04cd5.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z1Rb70VAsAP0NuRi%2BZx6xEnLAu2%2FtWshOQOKhs7D%2FSM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6439cb47-115a-4e44-8176-8de3a918646a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=GY1KLpWFdXDzbdCDr3r3YLIrQnshWFivNSuDvDW80BU%3D\",\r\n \"Id\": \"5eb6b22b-ffc5-43e0-9803-4e29da7d6234\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7579deff-c2e4-41cd-a9a4-e02a49db4f60.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ujuopqFiqaUa1ICgb8ljscn37mWlB3r5I4E%2F%2FyVHXOI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/365e164c-d7af-4863-ba77-a48558b8458b.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=YdFIVPf1H1wL5sa2RGujzBaVt8xis3EaQGQu0XH2Cqg%3D\",\r\n \"Id\": \"834154e8-f861-4219-b0aa-d87e2c255a42\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/12570dff-3822-41e4-9e17-1f4fea892d9b.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=J68jFrl%2FPOMQ%2BpM29zUX8UxSrf31tKJoX7pZrphtPXY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/c16b21b3-6ea2-4626-aa91-bcef76fa8871.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=glNyJIY2QAbAcky2dF05vVyezADt6OuRdBu%2FFNt5DcI%3D\",\r\n \"Id\": \"8c5bf021-e463-47d7-919d-58335de607c3\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=8PXQmasBPrJKDiOHLlpUc%2BxLeH3ZOT3Pd8jI%2FSOlj%2B4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=xKoTDx%2F8%2BmHsXmgq1SupUT0S6JOW%2BEkRGXIqljA%2FjEA%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0a51d73f-4c70-4634-af86-5cc5b82042e8.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=iHKJ7horBhzzk9DpNyRqsKtAWK1Uv23sYPLx8LPMgJI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ebb41248-2a4b-4894-bef4-152d82a688dc.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=E0qUTBIKwUUtgAu2zafBCB10s%2BDOBYWap9zNwiwI85c%3D\",\r\n \"Id\": \"90cf8d5e-b215-444e-b789-a3e7924716d8\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=5PtQgbIpCY5qk9Mib%2FHLFp0qFGuf2C6XxfIjH4RHlpA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=aiSPkSni8acvqz%2BDqDpaqi9KFvG9O%2Fo0vv3KIN%2FmLgk%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/300ffed8-2db3-4c64-9dc9-b7b16ecc1b08.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=1chXUKs8oMepb57ndP5zAysGSsE4BlcYo6gTRAKZxOY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/436a2ad1-86c9-4cca-8669-bfead5e7d1c4.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2n%2FhSvhpaDrsNtR1Qx7jig1O%2BCYYKYM9dZkeDHbB2Fw%3D\",\r\n \"Id\": \"a79fbcbf-fa64-4d37-8098-eb31b713255d\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=I28L%2FK5TP8KlkfWJT1RS%2F3A1rjH38blU2o%2Fbk8RojwA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=eceYh8ADxLAH3k9P3CMfXLkHf1JVT4XXdPB%2BOI%2BTKq4%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/39dd5826-7a73-4a56-b0d7-c6c4aaed3cf3.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AkWpiCZyzuD%2FxcWTm7yduEd2OcAkhuNhV%2BcpTYvyQik%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/a1bd2f0d-6316-4680-bd6c-f9db873abed3.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ffpeM%2BN8EghHjgOCkpeAoGzsztoK492aJ%2FrePZuMPNo%3D\",\r\n \"Id\": \"cba99c82-a138-4c4a-93c1-d7c75c096649\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=RPnIFAfS2e4vHauUluQEnnhKI8dVMbP%2B5CdwPpgslNM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=dKWYcYRE2xZw2Vfp9ilOfsgbDD1nE0f6G0MJMSfdPXE%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6b566fe3-88ee-4421-a87d-f66df361f0d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=tDyk%2B2OAfTFLpfm3CHLbduHpZjTpyn9TON5RR%2Fhh7M8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6ebee49b-9b8b-4371-b058-0468ddbf1257.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sr5VM1r3qbzQ%2FUigoqqGye%2FkvOTe4rddEoj3%2B4MRj64%3D\",\r\n \"Id\": \"dcde01c2-6e75-42cc-a26a-c4f9b87281ab\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/be40d0a0-e1df-4e87-8b4b-373a5b00277f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ARXtQrxckijoh1E8Q1%2Fo%2F%2B5HQNX%2Bpa7owZBb75U16T0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7fa93ba9-1bf0-4028-a79e-b1db1128c43a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=9P3DpdpS3v0t4iw6wDLzt3rb3s5CXuY0o0%2BWgueEmes%3D\",\r\n \"Id\": \"f3414418-5f96-4f2d-82ea-89276bf82227\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "11410" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "b69bd447aae99c65a61278a2e3d9d8d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=y%2FO5lD4KpYASNyyh5LXSFMsooXb3j04oGpdgykbIeo4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=xObgseHegIC4XiBXwIhVcj3kx68Y%2FnuDLeDBstYo%2BR8%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0f55ca20ef899697bfdcc5f34f0359ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:58 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=uSa0OyO4UT68QPloavZCEZK6GZA%2BgcnzxldvxMLiy70%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=GbejIboQ6ebbJ5tWpBqV0DilgP1b7FBWn5Zq4rj4r1M%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/83d8e64a-6225-4138-9d30-3c3b00510215.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=wLHunz58EdWo8inXERoTwJINd76Q0oyWVVTHKeELKnw%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/4d578ff4-9b86-4abd-a96e-c35ee261169a.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=FNZJPQmxO%2Fm2hTBGfG%2Fut3%2FIrZkIEypBBFGLu7ymyVc%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"Alias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "3557" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35e85864e8c490b3a3697dbdbd51d3c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=JmMEY9ZakuxaNNYCgOswgTE%2BWohXBMcOoO1QqVLdehE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=rZxBTVhYaTsiTW9i6g6%2FWavwoDPN21TxhS9alv0U5Uc%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a7e297ca2c049d9aa5b436227e71cf8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/bcbefc29-6de6-4e6e-b130-d92002966e2c?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvYmNiZWZjMjktNmRlNi00ZTZlLWIxMzAtZDkyMDAyOTY2ZTJjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "58855f72b51e9655a064b86154978f10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "747" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "419cbb93e16e9315ab040d08700b0273" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "764" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b86fe10fda4922da1d8b4f6a64de68a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "735" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "036619463e069ebbb1d095911bb5e3fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "751" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "601a6dc4372b93a39b93d0afda1b4658" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:15 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "744" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "298036e4e4ce9014ab0786c56b96edd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/db0205ad-1d77-4087-b142-5d8065f76224?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvZGIwMjA1YWQtMWQ3Ny00MDg3LWIxNDItNWQ4MDY1Zjc2MjI0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8971af2234b29cc487fcfc6915b1d31f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:05 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/8c846901-f75a-4742-90d6-137223b52da7?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOGM4NDY5MDEtZjc1YS00NzQyLTkwZDYtMTM3MjIzYjUyZGE3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "33f18646622a95d0bfc56d3f2bc42d5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:09 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/45bca3f6-056f-48e9-8f8c-ebcc5b929b55?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvNDViY2EzZjYtMDU2Zi00OGU5LThmOGMtZWJjYzViOTI5YjU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ed149286dd4e97caaddc55dc9d72430d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOWM2OTRiNmMtNWYyMi00ZDNiLWEyOGMtZGFlOThhNmFiNmMxP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e14659fd70f59e958308892c7a98c38f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "136197bb86c790a0bdb54d83a2d5cf37" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:23 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1805f417ff199633af674262055e6ee3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8d9fd191a1c6983997110132ff733eee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "25c9d5d4b79b95aa85301cc037e5edb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c47afdb3e52093668d7be31dfa81f795" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:25 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "fda0b9064af1947497799158f87040b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:28 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f6b4d0ccf1839159ac8b0721a71df9ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4a89e8fb15a094329565799f8999852b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:33 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "88ebb7a5793b9e5ba76b705939b2a262" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:37 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "67e3ffb32f209466a1980c014118a690" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35740d352cea99f7b00b8385fdb0bfd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:40 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4298340cfaaf9b66a9b545ac73065958" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:43 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"c902b11e-9d1d-45eb-82eb-6424f82c784f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2f25fa43b98093d9a99be1862fcdf718" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:46 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"f23d48cb-9512-4b27-a89a-990a6e7f068f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "37de324e3bb093638abe3d50a61d4034" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"fd337514-db28-4bec-b8d7-90843462755b\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a06b8f0f7b0893a1a67d7ab3a45e568a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:51 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"958f7c37-fc93-4a6b-9659-c18c70e81692\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f53f2deb9312976b9fd0334a24dab46d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "436b9a9762c49c7cb73d3fdd39148401" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-remoteapp-operation-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-ms-request-id": [ + "5dcdac48b48c9f71a72cfc4d52156020" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:59 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5fbf3a553cc4966294cd5a89755796dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:29:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4d880bd681c19e6da59e610d8c5c42c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:34:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "10a818d8f61c995baa0205f4a355c5bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:39:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1d51b83e712d9935819dc3a5b78ede3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:44:12 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0eb999375dba9392b7d22f22b1807f07" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:49:14 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e6763bbd194c9f0fae7955b31760d3db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:54:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1306d801dbc291329efbafee242cb888" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:59:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "21f939fe830a991386d0f93a304e1264" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 May 2015 00:04:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc" + } +} \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 deleted file mode 100644 index c8daff102266..000000000000 --- a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/Utility.ps1 +++ /dev/null @@ -1,81 +0,0 @@ - -[string] $eol = "`r`n" - -function Get-RandomName -{ -[CmdletBinding()] param ( - [parameter(Mandatory=$false)] - [string] $name, - [int] $count = 12 - ) - $suffix = -join $(Get-Random -InputObject 'a0b1c2d3e5f6g6h7i8j9k0l1m2n3o4p5q6r7s8t9u0v1w2z3y4z'.ToCharArray() -Count $Count) - if ($suffix -ne '') - { - "$name$suffix" - } - else - { - "$name" - } -} - -function Is-RunningAsAdmin -{ - $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent() - $windowsPrincipal = new-object System.Security.Principal.WindowsPrincipal($windowsIdentity) - $administratorRole = [System.Security.Principal.WindowsBuiltInRole]::Administrator - $isRunningAsAdmin = $windowsPrincipal.IsInRole($administratorRole) - return $isRunningAsAdmin -} - -function New_Log([string] $fileName) -{ - $i=1 - while ((Test-Path "$fileName-$i.txt")) - { - $i++ - } - $folder = Split-Path -Path $fileName-$i.txt -Parent - if ((Test-Path $folder)) - { - $Script:Test_LogFile = "$fileName-$i.txt" - $Script:LOGGING = $true - $Script:Test_LogFile - } -} - -function Open-Log([string] $fileName) -{ - if ((Test-Path $fileName)) - { - $Script:Test_LogFile = $fileName - $Script:LOGGING = $true - } -} - -function Write-Log([string] $msg, [bool] $EndOfLine = $true) -{ - if ($eol) - { - $msg += $eol - } - - if ($LOGGING) - { - Write-Output "$msg" | Out-File -FilePath $Test_LogFile -Append - } -} - -function echo([string] $msg,[bool] $EndOfLine = $true) -{ - Write_Log $msg - Write-Host $msg -} - -function Assert([ScriptBlock] $Condition) -{ - if ((& $Condition) -eq $false) - { - throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" - } -} diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json new file mode 100644 index 000000000000..11d0c0b43f0c --- /dev/null +++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json @@ -0,0 +1,2354 @@ +{ + "Entries": [ + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/locations?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvbG9jYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "448d4c96648c918ca83b2e45dc33a5d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:27 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/templateImages?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvdGVtcGxhdGVJbWFnZXM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadSetupTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "307009dc308192f4a4c128164d66fde6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:29 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/BillingPlans?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvQmlsbGluZ1BsYW5zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a8ffa5a4b6f97a99acb2554eef6b999" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:32 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdst15&action=register", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3QxNSZhY3Rpb249cmVnaXN0ZXI=", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The resource type rdst15 is already registered for this subscription.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "231" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5c2f34469c2091cbaba9c41c801672f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections?PopulateOnly=false&api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnM/UG9wdWxhdGVPbmx5PWZhbHNlJmFwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "309" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-remoteapp-operation-tracking-id": [ + "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1" + ], + "x-ms-request-id": [ + "3ba27ab674089a27b09f6b7ad9d801a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:51:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d14e97697ae292a7a3c17bd8ce98addc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 22:56:42 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "dfc908b82cbd90c79d0abaa40b52dfae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:01:44 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b44214d2dfe9d8eb54731a5ddfa45ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:06:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ea1a4368a1579bd381143dd28a1d3f99" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:11:48 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c7e28ae5492a972a9240f05c8b6cb2a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:16:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "20e4edbacc1e900aa95c45913c4ccba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/05e77332-a97a-4229-8e58-b17bf9829761.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z7Uf%2Bx4nEL6i%2FTqz1HX2sB8jexvXu3JOjixT44Qlq4A%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5b3039f5-2729-44ec-86b7-52df2cf25803.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=DlXfzsmGVI3VVVTFiz2Jm19emdy5r%2BWdCrYwWXYEEc8%3D\",\r\n \"Id\": \"04e6cae2-c709-4aba-a568-2b4aaad32af2\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ce329c74-2eeb-42fc-8d56-ee874412fb30.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=h%2B1uovb1klRqMQ5AKwjoxXS4EuRG9e3YJNuburqcGz0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1574b8fc-3b6e-4d16-a3c6-74c4931b95ae.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=NokEpBAqyb4Y2%2BhcDYW1JSzgm91B2gYOAq%2BBxTkFhNE%3D\",\r\n \"Id\": \"1d49a298-6656-4511-be81-2ac881850488\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/604f0e64-d126-41d8-a381-2239367eb2a4.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AaYlatL1nhSyw4osVtoqY%2BygCGCOOIoBy38lkDe3t7U%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/816715c7-3312-467a-a1ca-5ed444af3283.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=Y0ciz0xVl43Ra0qVkfmoy1XxdWj39WaUoeucbEjavkw%3D\",\r\n \"Id\": \"33f09af8-beec-4e14-94fd-2cdc3de17cb7\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/2bd21834-16bd-4da0-bb48-11bf8df0ea91.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=7pmcPTALDiCYZGXI%2FAzDZ06VM5rq7xXD185MRqamuss%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d8b53b21-4f21-4c18-ab95-8b6b31a84afe.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sJl%2BMYRcgb84J7yNZOW3powJbqYumJbzOr6n7W1SDtY%3D\",\r\n \"Id\": \"390e1a34-b1a2-49f5-9df5-533e8aad7a3b\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=87IpVvdQIS8VmwwUh8VbiwOei5ZtpU8Y%2FQl886GRQj4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=4A1fU0s1zWsc7OVGrTgEKGen%2F3sykTaa68KPERQ5kfY%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0d6f1c85-fcb9-4698-817c-73bd05281691.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=A%2B3V1L8L1X4Po1gqqDBwrDX1I230F2FxYEms%2F8CluBU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/f4074b68-b286-484e-b083-5d3e8363e6e5.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2tq%2F37I3cyXuEiSviesgMKYi1JoEzkP5nQihD%2BBBaww%3D\",\r\n \"Id\": \"5c4805e2-86f4-491f-9c10-ba6a2e267911\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/00d254ac-bcc3-42e5-90db-2c25f2a04cd5.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z1Rb70VAsAP0NuRi%2BZx6xEnLAu2%2FtWshOQOKhs7D%2FSM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6439cb47-115a-4e44-8176-8de3a918646a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=GY1KLpWFdXDzbdCDr3r3YLIrQnshWFivNSuDvDW80BU%3D\",\r\n \"Id\": \"5eb6b22b-ffc5-43e0-9803-4e29da7d6234\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7579deff-c2e4-41cd-a9a4-e02a49db4f60.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ujuopqFiqaUa1ICgb8ljscn37mWlB3r5I4E%2F%2FyVHXOI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/365e164c-d7af-4863-ba77-a48558b8458b.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=YdFIVPf1H1wL5sa2RGujzBaVt8xis3EaQGQu0XH2Cqg%3D\",\r\n \"Id\": \"834154e8-f861-4219-b0aa-d87e2c255a42\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/12570dff-3822-41e4-9e17-1f4fea892d9b.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=J68jFrl%2FPOMQ%2BpM29zUX8UxSrf31tKJoX7pZrphtPXY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/c16b21b3-6ea2-4626-aa91-bcef76fa8871.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=glNyJIY2QAbAcky2dF05vVyezADt6OuRdBu%2FFNt5DcI%3D\",\r\n \"Id\": \"8c5bf021-e463-47d7-919d-58335de607c3\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=8PXQmasBPrJKDiOHLlpUc%2BxLeH3ZOT3Pd8jI%2FSOlj%2B4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=xKoTDx%2F8%2BmHsXmgq1SupUT0S6JOW%2BEkRGXIqljA%2FjEA%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0a51d73f-4c70-4634-af86-5cc5b82042e8.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=iHKJ7horBhzzk9DpNyRqsKtAWK1Uv23sYPLx8LPMgJI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ebb41248-2a4b-4894-bef4-152d82a688dc.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=E0qUTBIKwUUtgAu2zafBCB10s%2BDOBYWap9zNwiwI85c%3D\",\r\n \"Id\": \"90cf8d5e-b215-444e-b789-a3e7924716d8\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=5PtQgbIpCY5qk9Mib%2FHLFp0qFGuf2C6XxfIjH4RHlpA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=aiSPkSni8acvqz%2BDqDpaqi9KFvG9O%2Fo0vv3KIN%2FmLgk%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/300ffed8-2db3-4c64-9dc9-b7b16ecc1b08.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=1chXUKs8oMepb57ndP5zAysGSsE4BlcYo6gTRAKZxOY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/436a2ad1-86c9-4cca-8669-bfead5e7d1c4.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2n%2FhSvhpaDrsNtR1Qx7jig1O%2BCYYKYM9dZkeDHbB2Fw%3D\",\r\n \"Id\": \"a79fbcbf-fa64-4d37-8098-eb31b713255d\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=I28L%2FK5TP8KlkfWJT1RS%2F3A1rjH38blU2o%2Fbk8RojwA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=eceYh8ADxLAH3k9P3CMfXLkHf1JVT4XXdPB%2BOI%2BTKq4%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/39dd5826-7a73-4a56-b0d7-c6c4aaed3cf3.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AkWpiCZyzuD%2FxcWTm7yduEd2OcAkhuNhV%2BcpTYvyQik%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/a1bd2f0d-6316-4680-bd6c-f9db873abed3.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ffpeM%2BN8EghHjgOCkpeAoGzsztoK492aJ%2FrePZuMPNo%3D\",\r\n \"Id\": \"cba99c82-a138-4c4a-93c1-d7c75c096649\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=RPnIFAfS2e4vHauUluQEnnhKI8dVMbP%2B5CdwPpgslNM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=dKWYcYRE2xZw2Vfp9ilOfsgbDD1nE0f6G0MJMSfdPXE%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6b566fe3-88ee-4421-a87d-f66df361f0d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=tDyk%2B2OAfTFLpfm3CHLbduHpZjTpyn9TON5RR%2Fhh7M8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6ebee49b-9b8b-4371-b058-0468ddbf1257.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sr5VM1r3qbzQ%2FUigoqqGye%2FkvOTe4rddEoj3%2B4MRj64%3D\",\r\n \"Id\": \"dcde01c2-6e75-42cc-a26a-c4f9b87281ab\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/be40d0a0-e1df-4e87-8b4b-373a5b00277f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ARXtQrxckijoh1E8Q1%2Fo%2F%2B5HQNX%2Bpa7owZBb75U16T0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7fa93ba9-1bf0-4028-a79e-b1db1128c43a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=9P3DpdpS3v0t4iw6wDLzt3rb3s5CXuY0o0%2BWgueEmes%3D\",\r\n \"Id\": \"f3414418-5f96-4f2d-82ea-89276bf82227\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "11410" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "b69bd447aae99c65a61278a2e3d9d8d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=y%2FO5lD4KpYASNyyh5LXSFMsooXb3j04oGpdgykbIeo4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=xObgseHegIC4XiBXwIhVcj3kx68Y%2FnuDLeDBstYo%2BR8%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0f55ca20ef899697bfdcc5f34f0359ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:21:58 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=uSa0OyO4UT68QPloavZCEZK6GZA%2BgcnzxldvxMLiy70%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=GbejIboQ6ebbJ5tWpBqV0DilgP1b7FBWn5Zq4rj4r1M%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/83d8e64a-6225-4138-9d30-3c3b00510215.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=wLHunz58EdWo8inXERoTwJINd76Q0oyWVVTHKeELKnw%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/4d578ff4-9b86-4abd-a96e-c35ee261169a.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=FNZJPQmxO%2Fm2hTBGfG%2Fut3%2FIrZkIEypBBFGLu7ymyVc%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"Alias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "3557" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35e85864e8c490b3a3697dbdbd51d3c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=JmMEY9ZakuxaNNYCgOswgTE%2BWohXBMcOoO1QqVLdehE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=rZxBTVhYaTsiTW9i6g6%2FWavwoDPN21TxhS9alv0U5Uc%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a7e297ca2c049d9aa5b436227e71cf8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/bcbefc29-6de6-4e6e-b130-d92002966e2c?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvYmNiZWZjMjktNmRlNi00ZTZlLWIxMzAtZDkyMDAyOTY2ZTJjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "631" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "58855f72b51e9655a064b86154978f10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "747" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "419cbb93e16e9315ab040d08700b0273" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "764" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9b86fe10fda4922da1d8b4f6a64de68a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "735" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "036619463e069ebbb1d095911bb5e3fe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "751" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "601a6dc4372b93a39b93d0afda1b4658" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:15 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "744" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "298036e4e4ce9014ab0786c56b96edd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/db0205ad-1d77-4087-b142-5d8065f76224?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvZGIwMjA1YWQtMWQ3Ny00MDg3LWIxNDItNWQ4MDY1Zjc2MjI0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8971af2234b29cc487fcfc6915b1d31f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:05 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/8c846901-f75a-4742-90d6-137223b52da7?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOGM4NDY5MDEtZjc1YS00NzQyLTkwZDYtMTM3MjIzYjUyZGE3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "33f18646622a95d0bfc56d3f2bc42d5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:09 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/45bca3f6-056f-48e9-8f8c-ebcc5b929b55?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvNDViY2EzZjYtMDU2Zi00OGU5LThmOGMtZWJjYzViOTI5YjU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ed149286dd4e97caaddc55dc9d72430d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOWM2OTRiNmMtNWYyMi00ZDNiLWEyOGMtZGFlOThhNmFiNmMxP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e14659fd70f59e958308892c7a98c38f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "136197bb86c790a0bdb54d83a2d5cf37" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:23 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1805f417ff199633af674262055e6ee3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "462" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "8d9fd191a1c6983997110132ff733eee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:35 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "25c9d5d4b79b95aa85301cc037e5edb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c47afdb3e52093668d7be31dfa81f795" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:25 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "fda0b9064af1947497799158f87040b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:28 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f6b4d0ccf1839159ac8b0721a71df9ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:31 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4a89e8fb15a094329565799f8999852b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:33 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "40" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "88ebb7a5793b9e5ba76b705939b2a262" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:37 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "67e3ffb32f209466a1980c014118a690" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:39 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "35740d352cea99f7b00b8385fdb0bfd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:40 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4298340cfaaf9b66a9b545ac73065958" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:43 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"c902b11e-9d1d-45eb-82eb-6424f82c784f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2f25fa43b98093d9a99be1862fcdf718" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:46 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"f23d48cb-9512-4b27-a89a-990a6e7f068f\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "37de324e3bb093638abe3d50a61d4034" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"fd337514-db28-4bec-b8d7-90843462755b\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a06b8f0f7b0893a1a67d7ab3a45e568a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:51 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"958f7c37-fc93-4a6b-9659-c18c70e81692\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "f53f2deb9312976b9fd0334a24dab46d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:52 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "436b9a9762c49c7cb73d3fdd39148401" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:22:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-remoteapp-operation-tracking-id": [ + "7ff70b85-a66a-408a-a7b6-3d2b947f210e" + ], + "x-ms-request-id": [ + "5dcdac48b48c9f71a72cfc4d52156020" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:23:59 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5fbf3a553cc4966294cd5a89755796dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:29:01 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "4d880bd681c19e6da59e610d8c5c42c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:34:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "10a818d8f61c995baa0205f4a355c5bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:39:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1d51b83e712d9935819dc3a5b78ede3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:44:12 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0eb999375dba9392b7d22f22b1807f07" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:49:14 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e6763bbd194c9f0fae7955b31760d3db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:54:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "1306d801dbc291329efbafee242cb888" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 04 May 2015 23:59:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "21f939fe830a991386d0f93a304e1264" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 May 2015 00:04:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc" + } +} \ No newline at end of file From 251e17de14398f3a438da1e802c89851703d69d0 Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Wed, 6 May 2015 12:33:44 -0700 Subject: [PATCH 07/58] Adding Checkin Tests to Azure RemoteApp --- .../Resources/RemoteApp/RemoteAppCI_Test.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 index 3eb096b90492..597728053050 100644 --- a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 @@ -111,7 +111,7 @@ function PublishRemoteApplications([string] $Collection) $programsToPublish = $availablePrograms[0..2] $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)] Assert({$programsToPublish.Count -eq $numOfApps}) - $Script:applications = $programsToPublish | % { + $applications = $programsToPublish | % { Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er if ($? -eq $false) { From aaf9c36a38be8b70313349058b5e6c378a6677a5 Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Fri, 15 May 2015 14:13:58 -0700 Subject: [PATCH 08/58] Adding Checkin Tests to Azure RemoteApp --- .../Commands.ScenarioTest.csproj | 1 - .../RemoteAppTests/CreateCloudCollection.cs | 1 + .../RemoteAppTests/environmentsetuphelper.cs | 269 ------------------ 3 files changed, 1 insertion(+), 270 deletions(-) delete mode 100644 src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index cc43ab99cab7..f2088ceeb49d 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -289,7 +289,6 @@ Resources.resx - diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs index e07fde2b0648..ce9187141c3a 100644 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs +++ b/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs @@ -43,6 +43,7 @@ protected Collection RunPowerShellTest(params string[] scripts) [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoteAppEndToEnd() { + System.Environment.SetEnvironmentVariable("rdfeNameSpace", "rdst15"); RunPowerShellTest("TestRemoteAppEndToEnd"); } } diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs b/src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs deleted file mode 100644 index a7419ba05d9b..000000000000 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/environmentsetuphelper.cs +++ /dev/null @@ -1,269 +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.Generic; -using System.Collections.ObjectModel; -using System.Management.Automation; -using System.Security.Cryptography.X509Certificates; -using Microsoft.WindowsAzure.Commands.Common; -using Microsoft.Azure.Common.Authentication.Models; -using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Diagnostics; -using Microsoft.Azure.Common.Authentication; -using Microsoft.Azure.Test; -using Microsoft.Azure.Test.HttpRecorder; -using Microsoft.Azure; -using System.IO; - -namespace Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests -{ - public class EnvironmentSetupHelper - { - private static string testEnvironmentName = "__test-environment"; - private static string testSubscriptionName = "__test-subscriptions"; - private AzureSubscription testSubscription; - private AzureAccount testAccount; - protected List modules; - protected ProfileClient ProfileClient { get; set; } - - public EnvironmentSetupHelper() - { - var datastore = new MockDataStore(); - AzureSession.DataStore = datastore; - var profile = new AzureProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile)); - AzurePSCmdlet.CurrentProfile = profile; - AzureSession.DataStore = datastore; - ProfileClient = new ProfileClient(profile); - - // Ignore SSL errors - System.Net.ServicePointManager.ServerCertificateValidationCallback += (se, cert, chain, sslerror) => true; - // Set RunningMocked - if (HttpMockServer.GetCurrentMode() == HttpRecorderMode.Playback) - { - TestMockSupport.RunningMocked = true; - } - else - { - TestMockSupport.RunningMocked = false; - } - } - - /// - /// Loads DummyManagementClientHelper with clients and throws exception if any client is missing. - /// - /// - public void SetupManagementClients(params object[] initializedManagementClients) - { - AzureSession.ClientFactory = new MockClientFactory(initializedManagementClients); - } - - /// - /// Loads DummyManagementClientHelper with clients and sets it up to create missing clients dynamically. - /// - /// - public void SetupSomeOfManagementClients(params object[] initializedManagementClients) - { - AzureSession.ClientFactory = new MockClientFactory(initializedManagementClients, false); - } - - public void SetupEnvironment(AzureModule mode) - { - SetupAzureEnvironmentFromEnvironmentVariables(mode); - - ProfileClient.Profile.Save(); - } - - private void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) - { - TestEnvironment rdfeEnvironment = new RDFETestEnvironmentFactory().GetTestEnvironment(); - - if (rdfeEnvironment.UserName == null) - { - rdfeEnvironment.UserName = "fakeuser@microsoft.com"; - } - - SetAuthenticationFactory(mode, rdfeEnvironment, null); - - AzureEnvironment environment = new AzureEnvironment { Name = testEnvironmentName }; - - Debug.Assert(rdfeEnvironment != null); - environment.Endpoints[AzureEnvironment.Endpoint.ActiveDirectory] = rdfeEnvironment.Endpoints.AADAuthUri.AbsoluteUri; - environment.Endpoints[AzureEnvironment.Endpoint.Gallery] = rdfeEnvironment.Endpoints.GalleryUri.AbsoluteUri; - - if (rdfeEnvironment != null) - { - environment.Endpoints[AzureEnvironment.Endpoint.ServiceManagement] = rdfeEnvironment.BaseUri.AbsoluteUri; - } - - if (!ProfileClient.Profile.Environments.ContainsKey(testEnvironmentName)) - { - ProfileClient.AddOrSetEnvironment(environment); - } - - if (rdfeEnvironment.SubscriptionId != null) - { - testSubscription = new AzureSubscription() - { - Id = new Guid(rdfeEnvironment.SubscriptionId), - Name = testSubscriptionName, - Environment = testEnvironmentName, - Account = rdfeEnvironment.UserName, - Properties = new Dictionary - { - {AzureSubscription.Property.Default, "True"}, - { - AzureSubscription.Property.StorageAccount, - Environment.GetEnvironmentVariable("AZURE_STORAGE_ACCOUNT") - }, - } - }; - - testAccount = new AzureAccount() - { - Id = rdfeEnvironment.UserName, - Type = AzureAccount.AccountType.User, - Properties = new Dictionary - { - {AzureAccount.Property.Subscriptions, rdfeEnvironment.SubscriptionId}, - } - }; - - ProfileClient.Profile.Subscriptions[testSubscription.Id] = testSubscription; - ProfileClient.Profile.Accounts[testAccount.Id] = testAccount; - ProfileClient.SetSubscriptionAsDefault(testSubscription.Name, testSubscription.Account); - } - } - - private void SetAuthenticationFactory(AzureModule mode, TestEnvironment rdfeEnvironment, TestEnvironment csmEnvironment) - { - string jwtToken = null; - X509Certificate2 certificate = null; - TestEnvironment currentEnvironment = (mode == AzureModule.AzureResourceManager ? csmEnvironment : rdfeEnvironment); - - if (mode == AzureModule.AzureServiceManagement) - { - if (rdfeEnvironment.Credentials is TokenCloudCredentials) - { - jwtToken = ((TokenCloudCredentials)rdfeEnvironment.Credentials).Token; - } - if (rdfeEnvironment.Credentials is CertificateCloudCredentials) - { - certificate = ((CertificateCloudCredentials)rdfeEnvironment.Credentials).ManagementCertificate; - } - } - else - { - if (csmEnvironment.Credentials is TokenCloudCredentials) - { - jwtToken = ((TokenCloudCredentials)csmEnvironment.Credentials).Token; - } - if (csmEnvironment.Credentials is CertificateCloudCredentials) - { - certificate = ((CertificateCloudCredentials)csmEnvironment.Credentials).ManagementCertificate; - } - } - - - if (jwtToken != null) - { - AzureSession.AuthenticationFactory = new MockTokenAuthenticationFactory(currentEnvironment.UserName, - jwtToken); - } - else if (certificate != null) - { - AzureSession.AuthenticationFactory = new MockCertificateAuthenticationFactory(currentEnvironment.UserName, - certificate); - } - } - - public void SetupModules(AzureModule mode, params string[] modules) - { - this.modules = new List(); - if (mode == AzureModule.AzureProfile) - { - this.modules.Add(@"ServiceManagement\Azure\Azure.psd1"); - this.modules.Add(@"ResourceManager\AzureResourceManager\AzureResourceManager.psd1"); - } - else if (mode == AzureModule.AzureServiceManagement) - { - this.modules.Add(@"ServiceManagement\Azure\Azure.psd1"); - } - else if (mode == AzureModule.AzureResourceManager) - { - this.modules.Add(@"ResourceManager\AzureResourceManager\AzureResourceManager.psd1"); - } - else - { - throw new ArgumentException("Unknown command type for testing"); - } - this.modules.Add("Assert.ps1"); - this.modules.Add("Common.ps1"); - this.modules.AddRange(modules); - } - - public virtual Collection RunPowerShellTest(params string[] scripts) - { - using (var powershell = System.Management.Automation.PowerShell.Create()) - { - SetupPowerShellModules(powershell); - - Collection output = null; - for (int i = 0; i < scripts.Length; ++i) - { - Console.WriteLine(scripts[i]); - powershell.AddScript(scripts[i]); - } - try - { - output = powershell.Invoke(); - - if (powershell.Streams.Error.Count > 0) - { - throw new RuntimeException( - "Test failed due to a non-empty error stream, check the error stream in the test log for more details."); - } - - return output; - } - catch (Exception psException) - { - powershell.LogPowerShellException(psException); - throw; - } - finally - { - powershell.LogPowerShellResults(output); - } - } - } - - private void SetupPowerShellModules(System.Management.Automation.PowerShell powershell) - { - powershell.AddScript(string.Format("cd \"{0}\"", Environment.CurrentDirectory)); - - foreach (string moduleName in modules) - { - powershell.AddScript(string.Format("Import-Module \".\\{0}\"", moduleName)); - } - - powershell.AddScript("$VerbosePreference='Continue'"); - powershell.AddScript("$DebugPreference='Continue'"); - powershell.AddScript("$ErrorActionPreference='Stop'"); - powershell.AddScript("Write-Debug \"AZURE_TEST_MODE = $($env:AZURE_TEST_MODE)\""); - powershell.AddScript("Write-Debug \"TEST_HTTPMOCK_OUTPUT = $($env:TEST_HTTPMOCK_OUTPUT)\""); - } - } -} From dd530efd09e0225a015dac8b814e977a00a7b545 Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Thu, 28 May 2015 09:49:52 -0700 Subject: [PATCH 09/58] Backing out Paged User code --- .../SecurityPrincipals/GetAzureRemoteAppUser.cs | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs index b999afc3cc71..a7cef1a5674e 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs @@ -69,7 +69,7 @@ public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second) } } - private bool ProccessUsers(SecurityPrincipalInfoResult response) + private bool ProccessUsers(SecurityPrincipalInfoListResult response) { ConsentStatusModel model = null; bool found = false; @@ -126,7 +126,7 @@ private bool ProccessUsers(SecurityPrincipalInfoResult response) } public override void ExecuteCmdlet() { - SecurityPrincipalInfoResult response = null; + SecurityPrincipalInfoListResult response = null; bool found = false; showAllUsers = String.IsNullOrWhiteSpace(UserUpn); @@ -137,16 +137,11 @@ public override void ExecuteCmdlet() } // You must pass in an empty string to this call. After that pass in the token returned by the previous call - response = CallClient(() => Client.Principals.ListByPage(CollectionName, ""), Client.Principals); + response = CallClient(() => Client.Principals.List(CollectionName), Client.Principals); - if (response != null && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) + if (response != null && response.SecurityPrincipalInfoList != null) { found = ProccessUsers(response); - while (response != null && !String.IsNullOrWhiteSpace(response.ContinuationToken) && response.SecurityPrincipalInfoList != null && response.SecurityPrincipalInfoList.Count != 0) - { - response = CallClient(() => Client.Principals.ListByPage(CollectionName, response.ContinuationToken), Client.Principals); - ProccessUsers(response); - } } if (!found && !showAllUsers) From 7101f23a01a7d78862796d3d839751d7e650041e Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Wed, 15 Jul 2015 15:52:49 -0700 Subject: [PATCH 10/58] Removing AD requirement for VNets --- .../Collection/NewAzureRemoteAppCollection.cs | 108 ++++++++---------- .../Commands.RemoteApp.Designer.cs | 24 +++- .../Commands.RemoteApp.resx | 14 ++- .../NewAzureRemoteAppTemplateImage.cs | 17 +-- 4 files changed, 82 insertions(+), 81 deletions(-) diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs index d0473cbac97a..bb970ba556ca 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- + namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { using Microsoft.WindowsAzure.Commands.RemoteApp; @@ -24,11 +25,9 @@ namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets using System.Net; using System.Threading.Tasks; - [Cmdlet(VerbsCommon.New, "AzureRemoteAppCollection", DefaultParameterSetName = NoDomain), OutputType(typeof(TrackingResult))] + [Cmdlet(VerbsCommon.New, "AzureRemoteAppCollection", DefaultParameterSetName = "AllParameterSets"), OutputType(typeof(TrackingResult))] public class NewAzureRemoteAppCollection : RdsCmdlet { - private const string DomainJoined = "DomainJoined"; - private const string NoDomain = "NoDomain"; private const string AzureVNet = "AzureVNet"; [Parameter(Mandatory = true, @@ -53,62 +52,54 @@ public class NewAzureRemoteAppCollection : RdsCmdlet )] public string Plan { get; set; } - [Parameter(Mandatory = true, + [Parameter(Mandatory = false, Position = 3, ValueFromPipelineByPropertyName = true, - ParameterSetName = NoDomain, HelpMessage = "Location in which this collection will be created. Use Get-AzureRemoteAppLocation to see the locations available." )] public string Location { get; set; } - [Parameter( + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureVNet, HelpMessage = "The name of the RemoteApp or Azure VNet to create the collection in." )] - [Parameter(Mandatory = true, Position = 3, ParameterSetName = DomainJoined)] - [Parameter(Mandatory = true, Position = 3, ParameterSetName = AzureVNet)] public string VNetName { get; set; } - [Parameter(Mandatory = false, + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = AzureVNet, - HelpMessage = "For Azure VNets only, a comma-separated list of DNS servers for the VNet." + HelpMessage = "For Azure VNets only, the name of the subnet." )] - [ValidateNotNullOrEmpty] - public string DnsServers { get; set; } + public string SubnetName { get; set; } - [Parameter(Mandatory = true, - Position = 6, + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = AzureVNet, - HelpMessage = "For Azure VNets only, the name of the subnet." + HelpMessage = "For Azure VNets only, a comma-separated list of DNS servers for the VNet." )] [ValidateNotNullOrEmpty] - public string SubnetName { get; set; } + public string DnsServers { get; set; } - [Parameter( + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureVNet, HelpMessage = "The name of the on-premise domain to join the RD Session Host servers to." )] - [Parameter(Mandatory = true, Position = 4, ParameterSetName = DomainJoined)] - [Parameter(Mandatory = true, Position = 4, ParameterSetName = AzureVNet)] [ValidatePattern(DomainNameValidatorString)] public string Domain { get; set; } - [Parameter( + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "The users credentials that has permission to add computers to the domain." - )] - [Parameter(Mandatory = true, Position = 5, ParameterSetName = DomainJoined)] - [Parameter(Mandatory = true, Position = 5, ParameterSetName = AzureVNet)] + ParameterSetName = AzureVNet, + HelpMessage = "The credentials of a user who has permission to add computers to the domain. The user's domain must be supplied as an FQDN, (e.g. home.local\\username or username@home.local).")] public PSCredential Credential { get; set; } [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, + ParameterSetName = AzureVNet, HelpMessage = "The name of your organizational unit to join the RD Session Host servers, e.g. OU=MyOu,DC=MyDomain,DC=ParentDomain,DC=com. Attributes such as OU, DC, etc. must be in uppercase." )] - [Parameter(ParameterSetName = DomainJoined)] - [Parameter(ParameterSetName = AzureVNet)] [ValidatePattern(OrgIDValidatorString)] public string OrganizationalUnit { get; set; } @@ -152,39 +143,33 @@ public override void ExecuteCmdlet() OperationResultWithTrackingId response = null; - switch (ParameterSetName) + if (ParameterSetName == "AzureVNet") { - case DomainJoined: - case AzureVNet: + details.VNetName = VNetName; + details.SubnetName = SubnetName; + ValidateCustomerVNetParams(details.VNetName, details.SubnetName); + + if (DnsServers != null) { - creds = Credential.GetNetworkCredential(); - details.VNetName = VNetName; + details.DnsServers = DnsServers.Split(new char[] { ',' }); + } - if (SubnetName != null) + if (!String.IsNullOrWhiteSpace(Domain) || Credential != null) + { + if (String.IsNullOrWhiteSpace(Domain) || Credential == null) { - if (!IsFeatureEnabled(EnabledFeatures.azureVNet)) - { - ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString( - string.Format(Commands_RemoteApp.LinkAzureVNetFeatureNotEnabledMessage), - String.Empty, - Client.Account, - ErrorCategory.InvalidOperation - ); - - ThrowTerminatingError(er); - } - - details.SubnetName = SubnetName; - ValidateCustomerVNetParams(details.VNetName, details.SubnetName); - - if (DnsServers != null) - { - details.DnsServers = DnsServers.Split(new char[] { ',' }); - } - - details.Region = Location; + // you supplied either a domain or a cred, but not both. + ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString( + Commands_RemoteApp.InvalidADArguments, + String.Empty, + Client.Collections, + ErrorCategory.InvalidArgument + ); + + ThrowTerminatingError(er); } + creds = Credential.GetNetworkCredential(); details.AdInfo = new ActiveDirectoryConfig() { DomainName = Domain, @@ -192,13 +177,20 @@ public override void ExecuteCmdlet() UserName = creds.UserName, Password = creds.Password, }; - break; } - case NoDomain: - default: + } + else + { + if (String.IsNullOrEmpty(details.Region)) { - details.Region = Location; - break; + ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString( + Commands_RemoteApp.InvalidLocationArgument, + String.Empty, + Client.Collections, + ErrorCategory.InvalidArgument + ); + + ThrowTerminatingError(er); } } diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs index a6f459a583d9..27192cbb3e71 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs @@ -159,6 +159,15 @@ internal static string ImportImageFeatureNotEnabledError { } } + /// + /// Looks up a localized string similar to Both domain name and credentials must be specified. + /// + internal static string InvalidADArguments { + get { + return ResourceManager.GetString("InvalidADArguments", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid Argument SubnetName: {0} not found. /// @@ -177,6 +186,15 @@ internal static string InvalidArgumentVNetNameNotFoundMessageFormat { } } + /// + /// Looks up a localized string similar to Location must be supplied for Cloud only environtments. + /// + internal static string InvalidLocationArgument { + get { + return ResourceManager.GetString("InvalidLocationArgument", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid Argument: OS Image type is {0}. It must be Windows.. /// @@ -349,7 +367,7 @@ internal static string TemplateImageUploadFailedMessage { } /// - /// Looks up a localized string similar to Uploading Template Image. + /// Looks up a localized string similar to Uploading template image. /// internal static string TemplateImageUploadingStatusMessage { get { @@ -412,7 +430,7 @@ internal static string UploadScriptFailedError { } /// - /// Looks up a localized string similar to Upload RemoteApp Template Image. + /// Looks up a localized string similar to Upload RemoteApp template image. /// internal static string UploadTemplateImageJobDescriptionMessage { get { @@ -466,7 +484,7 @@ internal static string VNetTimeout { } /// - /// Looks up a localized string similar to Waiting for Storage verification to complete. + /// Looks up a localized string similar to Waiting for storage verification to complete. /// internal static string WaitingForStorageVerificationToCompleteMessage { get { diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx index fe004c0f451c..947e00dc723e 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx @@ -2,7 +2,7 @@ + \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs similarity index 93% rename from src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs rename to src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs index ce9187141c3a..b6ecb8db96b8 100644 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs @@ -23,8 +23,7 @@ protected Collection RunPowerShellTest(params string[] scripts) Collection result = new Collection(); EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); - modules = Directory.GetFiles(@"ServiceManagement\Azure\RemoteApp", "*.ps1").ToList(); - + modules = Directory.GetFiles(@"..\..\Scripts", "*.ps1").ToList(); helper.SetupSomeOfManagementClients(); helper.SetupEnvironment(AzureModule.AzureServiceManagement); helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray()); @@ -43,7 +42,7 @@ protected Collection RunPowerShellTest(params string[] scripts) [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoteAppEndToEnd() { - System.Environment.SetEnvironmentVariable("rdfeNameSpace", "rdst15"); + System.Environment.SetEnvironmentVariable("rdfeNameSpace", "rdsr8"); RunPowerShellTest("TestRemoteAppEndToEnd"); } } diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 new file mode 100644 index 000000000000..f3da3f38ce72 --- /dev/null +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 @@ -0,0 +1,255 @@ + +function PollingInterval() +{ + if ($env:AZURE_TEST_MODE -eq 'Playback') + { + $pollingIntervalSecs = 5 + } + else + { + $pollingIntervalSecs = 60 * 5 + } + $pollingIntervalSecs +} + +function Assert([ScriptBlock] $Condition) +{ + if ((& $Condition) -eq $false) + { + throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" + } +} + +<# + This will pick a location, image, billing plan and create a ARA App collection and returns the collection name. +#> +function CreateCloudCollection([string] $Collection) +{ + + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + [PSObject[]] $locationList = Get-AzureRemoteAppLocation | % Name + Assert -Condition {$locationList -ne $null -or $locationList.Count -lt 1} + + [PSObject[]] $templateImageList = Get-AzureRemoteAppTemplateImage | ? {$_.Type -eq 'Platform' -and $_.OfficeType -ne 'Office365'} + Assert -Condition {$templateImageList -ne $null -or $templateImageList.Count -lt 1} + + $templateImage = $null + $locCounter = 0 + $imageCounter = 0 + $found = $false + do + { + $location = $locationList[$locCounter] + do + { + $templateImage = $templateImageList[$imageCounter] + if ($templateImage.RegionList -contains $location) + { + $found = $true + } + + $imageCounter++ + } while ($imageCounter -lt $templateImageList.Count -and -not $found) + + $locCounter++ + } while ($locCounter -lt $locationList.Count -and -not $found) + + Assert -Condition {$found} + + $billingPlans = Get-AzureRemoteAppPlan | % Name + $billingPlan = $billingPlans[0] + Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)} + + Write-Verbose "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($templateImage.Name) -Plan $billingPlan -Location $location -Description 'Test Collection'" + $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $templateImage.Name -Plan $billingPlan -Location $location -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + do + { + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) + + $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Write-Verbose "Collection state: $($collectionState.Status)" + } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) succsssfully created this collection $Collection" +} + + +<# + This will pick a 5 applications to publish, verifies that they've been published and returns the Publishing Info. +#> +function PublishRemoteApplications([string] $Collection) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $numOfApps = 5 + $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Assert({$availablePrograms.Count -ge $numOfApps}) + + $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $programsToPublish = $availablePrograms[0..2] + $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)] + Assert({$programsToPublish.Count -eq $numOfApps}) + $applications = $programsToPublish | % { + Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $publishedPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Assert -Condition {($publishedPrograms.Count - $currentPrograms.Count) -eq $numOfApps} + + $applications | % {Write-Verbose "($([IO.FileInfo]$_.ApplicationVirtualPath))"} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" + + $applications +} + + +<# + This will pick a add the given users to the collection. +#> +function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $msaUsers | % { + Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Assert -Condition {($previousUsers.Count + $msaUsers.Count) -eq $currentUsers.Count} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" + + $currentUsers | % {Write-Verbose "Username: $($_.Name),and Type: $($_.UserIdType)" } +} + +<# + This will remove the given users from the collection. +#> +function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $msaUsers | % { + Remove-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $currentUssers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + Assert -Condition {$currentUsers -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" +} + +<# + This will unpublish the specified applications from the collection. +#> +function UnpublishRemoteApplications([string] $Collection, [string[]] $applications) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $applications | % { + Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er | Out-Null + if ($? -eq $false) + { + throw $er + } + } + + Sleep 60 # seconds + $remainingApps = Get-AzureRemoteAppProgram $Collection | % Alias + + $failedToUnpublish = $remainingApps | ? {$applications -contains $_} + Assert -Condition {$failedToUnpublish -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" +} + +<# + This delete the collection +#> +function DeleteRemoteAppCollection([string] $Collection) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection + + do + { + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) + + $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Write-Verbose "Collection state: $($collectionState.Status)" + } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" +} + + +function TestRemoteAppEndToEnd() +{ + $collection = 'CICollection' + $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com" + Set-Variable -Name VerbosePreference -Value Continue + + Write-Verbose "Starting current time: $(Get-Date)" + CreateCloudCollection $collection + $applications = PublishRemoteApplications $collection + AddRemoteAppUsers $collection $msaUsers + RemoveRemoteAppUsers $collection $msaUsers + UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias}) + DeleteRemoteAppCollection $collection +} diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json new file mode 100644 index 000000000000..b012adbd57da --- /dev/null +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json @@ -0,0 +1,2046 @@ +{ + "Entries": [ + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/locations?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9sb2NhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "bc63553bb95fa57db8cd5045aa171781" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/templateImages?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC90ZW1wbGF0ZUltYWdlcz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Id\": \"9a920fd4-f697-4e98-9c48-671642c39888\",\r\n \"Name\": \"asuploaded\",\r\n \"NumberOfLinkedCollections\": 1,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": null,\r\n \"RegionList\": [\r\n \"West US\"\r\n ],\r\n \"Sas\": \"?sv=2012-02-12&sr=b&si=9a920fd4-f697-4e98-9c48-671642c39888&sig=s1Hf1e2aKJV76DTAoYsfdsuSop3A1OxJTD%2BHfzXIEnw%3D\",\r\n \"SasExpiry\": \"2015-05-25T21:32:34.508Z\",\r\n \"Size\": 42949673472,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 0,\r\n \"UploadCompleteTime\": \"2015-05-22T21:59:16.541Z\",\r\n \"UploadSetupTime\": \"2015-05-22T21:32:34.714Z\",\r\n \"UploadStartTime\": \"2015-05-22T21:58:06.791Z\",\r\n \"Uri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/goldimages/9a920fd4-f697-4e98-9c48-671642c39888.vhd\"\r\n },\r\n {\r\n \"Id\": \"d650edb6-718c-4e62-9fd7-fa244ad23230\",\r\n \"Name\": \"uitestimported\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": null,\r\n \"RegionList\": [\r\n \"West US\"\r\n ],\r\n \"Sas\": null,\r\n \"SasExpiry\": \"1900-01-01T00:00:00Z\",\r\n \"Size\": 136367309312,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 0,\r\n \"UploadCompleteTime\": \"2015-05-22T22:48:18.717Z\",\r\n \"UploadSetupTime\": \"2015-05-22T22:33:39.841Z\",\r\n \"UploadStartTime\": \"2015-05-22T22:46:55.234Z\",\r\n \"Uri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/goldimages/d650edb6-718c-4e62-9fd7-fa244ad23230.vhd\"\r\n },\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-05-14T23:02:10.156Z\",\r\n \"UploadSetupTime\": \"2015-05-14T23:02:10.156Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n },\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\",\r\n \"Name\": \"Windows Server RDSHwO365P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-05-13T20:37:23.415Z\",\r\n \"UploadSetupTime\": \"2015-05-13T20:37:23.415Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "2573" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "18079624a242a83cb6542dad91bfd08e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:47 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/BillingPlans?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9CaWxsaW5nUGxhbnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ee65114e7743a1e3a08c43c20edc0886" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdsr8&action=register", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3I4JmFjdGlvbj1yZWdpc3Rlcg==", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The resource type rdsr8 is already registered for this subscription.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "230" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9e516e5ed0bdafdda683cce8950fb769" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:53 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections?PopulateOnly=false&api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucz9Qb3B1bGF0ZU9ubHk9ZmFsc2UmYXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "309" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4" + ], + "x-remoteapp-operation-tracking-id": [ + "21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4" + ], + "x-ms-request-id": [ + "c9e82e35282ba9c0956b74f1baaa37d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "933b38d4739aa6869248a0ad6e449280" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:31:59 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5f044d4e0afaa4f0b3d4f3f18209d74a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:37:02 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d1653e5995b8a9b3adaa70f326815276" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:42:05 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2ad482e88defa95b9077f36899190038" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:08 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/a297f2a6-a708-4aa4-af73-1f5901db22bf.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=PRDpiH6AOQut60shbRW9AqO1DdynH%2F3WQJHIJtwzrbI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/17a5c61f-98b8-4e7b-9810-d008afd16474.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=3tLcFDKEA6QIKwX5VGMtRjYFyFImD1r8JlyZR3QyLos%3D\",\r\n \"Id\": \"230e0b5b-45f3-480a-b8d8-18b7e431d42e\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/7bd109ee-f5ab-4127-91cf-371fc43940b6.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=NXNnbysN%2FtrOVeOLOB0r3M%2BOO0gL%2BVJ7SFqjOY7519c%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/40c2cfac-f2db-48aa-94d7-0a1bf499927c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=YGrFS%2Flk2sJ0rCwIR0oipkHV%2F1lD2n3NLhQAEdnlQEA%3D\",\r\n \"Id\": \"2736d2ce-0afe-4085-acb7-19cd214a2b76\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c3f85baf-8640-404c-bf13-96174e7f80ba.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=KOnmOctNs2bLYyt%2FcBaSxSKA5r0h5tbZtHF9yEUUf6Y%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/12384e20-0252-4ad1-b87a-512a4539a5c3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=5LaNtBI49i3pkhwX2%2F%2F%2BQSv1nSU3zM8g71Wb7TB2N9o%3D\",\r\n \"Id\": \"2d97c080-59ba-4ce5-818a-4f7a7b46705f\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dfbb262b-a7c2-45d7-a21f-352239bec608.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=bsR660CobFGzsYme18FCydseVAQg8Bpk%2BCjH6AgVq0g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aa357ad8-c2c9-4486-8da2-5d42c89b9e22.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=uYDAc8iPqYoe6Hn%2FH%2B4sdmRrmZDwV%2FnA8DJoOaGAj6Y%3D\",\r\n \"Id\": \"3c84069d-8c27-4f8b-9ce6-3e0832f53586\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/ef8ad6a9-59ba-4e63-a994-496ded66e6fe.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=vEsxhpEIUKj8z8hMdqMjHaZ6aKN9YbAaKM%2B1Df4JhEk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/970bfc6b-8782-4d6f-af5e-631ca11a2b69.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=zgl7tI6u9MKTyMdYTtjnvJNFzXK7DjG0aqosn0gqFwY%3D\",\r\n \"Id\": \"56dc7a9c-ece0-4c31-94d8-b58526637dee\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/1bc40e92-d6f9-4a8b-a0c8-09ab4e53bef8.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=qF5mJ5tBVxru32r8MHJGUGtOpyH3GNRIVpdelfEE2sQ%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/f9387193-24f9-4cf9-b90f-7b123c183382.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=V6jWcNrL7IVMtncc5X6ChU5tTpVgjOJrub7fVZhlDwY%3D\",\r\n \"Id\": \"5f8b9797-3f6c-45cf-85e9-7e7bdb9dd9ca\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=7%2B8szZi3a72M%2FyKXrLzNhnNJUXQ98gqDa629N2KJ%2BiU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=PArQNcufYWu99zj5OWqcWVfzSjuUwsgfyyZJD1bWGVg%3D\",\r\n \"Id\": \"608ec71e-4f30-476d-8f81-fe38638bb0ab\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=FSQlO8EtPsfUx1wL%2FdMNFfNT%2FtEkCeTPQjW0gaVZ4Sg%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=G7KYBjUDfh1c7JB2sjimmhIu0FMl4DS2EBH7jZKuwAo%3D\",\r\n \"Id\": \"68850412-3592-4cf8-a9e3-41e845e6f9cd\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=EZyWroR4WBurhDjfGAGzQeeez99QXVlbIkK0izJqjnY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=5U3YZfgA2BxXaUECp93YbyoyvY1Z9Rj6Mj63CPNlaS0%3D\",\r\n \"Id\": \"830072f3-84cb-4b63-84ce-1e1c904d04bf\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/7692feba-5784-4148-93b1-d2b6a7914bd0.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=suI1%2F38txvkPSAe7%2BRGj5D4cFSICwRHhLMi1kYdM5yA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d3839470-5113-4200-9534-13a6b50e0ba7.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=yGoKsogq8yYSnEd%2FJJv8oTbDZXhidjBZsnJmQVSjIfw%3D\",\r\n \"Id\": \"83541a22-179e-4ded-a042-af9557da897a\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=97l55zEK8vUWpsk03B%2Fi6Mr7%2BpFEgPKmZSx5Ki937no%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=qd9Mp8jyq820ik%2FZbMeGgiHXb5IGJEkQHsvcY4Sox3I%3D\",\r\n \"Id\": \"8f1ced01-5081-41b4-9d4c-3dc2a33ac92c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/ec86ce2b-d9cd-4db6-87ef-fa1636fd684d.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=I2gHBFQb1snT%2FMY0ZKGYbETWA1DxT%2BHg07CblXzxByE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9b7d39ce-32d5-4ab1-9e2d-d7665c899203.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=kntB9p2cqBG5gxQ7TtOWwauLQ5zZLGawLmj%2BJ%2B4GnJA%3D\",\r\n \"Id\": \"9758f483-ee6a-4622-ba22-494291ee6851\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/b32a6a1d-2279-4c34-9ebd-4835678a584d.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=1pezOgkS2R122G1ZK5%2F%2FUo1ZU048nRU7CNNP0vuE4dY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/554d7882-09d9-4868-b912-ed9de6e89d90.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=kZR9nRQNV5jKeeMlWLWB%2FHzJLwsFZKKWzJefKGoYpYk%3D\",\r\n \"Id\": \"c140cb4f-6118-4171-960a-3c9f6b8a8ab1\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/31ce03f1-a670-4c7c-990b-d19896e530f3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=GLIsL7T0FZobDGHgCapK5v%2Fic1%2FUF3Nhw6OaKvQkP00%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/24b66c12-1b28-4922-b730-67543ba3934e.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=N45%2BUIGiiG6YmN4bO5ZkK4ZpUUboeb2AN2nmGMO2OQQ%3D\",\r\n \"Id\": \"d6ce5365-a323-4d4c-b00a-3f68f0c1adad\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/617f7b95-56bf-4609-bcd5-9205c9857945.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=jzmuXA1qRYBcIzVJ2d96Vl4EDPUjv%2Br7ADV4NUH8M8Q%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/3afa0cd6-5f61-423d-ae62-29dc10f0b2b1.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=K0kqVZNdZi1Xucqa1BLAzuKOpTvI1AKRgqcWjYfCBEc%3D\",\r\n \"Id\": \"dee0ec9e-3138-4be8-8402-01317456675d\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c047fc28-136c-4f5a-a20b-fd76284e7f11.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=CfXi17wShsPyJ0%2FPA%2BsN6r%2F8WWNm9NjpX63OR6m02Bk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/03ee9238-80da-4226-b1f7-b3782f43bc51.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=7i%2FRTB3ybrRVYGBex%2FQ%2Fyu2YOHXJTk2LzG24akAOhsY%3D\",\r\n \"Id\": \"e16dcecb-bf16-4e69-8f37-2606136ce69c\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=RXeY%2FF2HyTeFWXv3TMtSaBtG%2BDotF5Fc1LrDKtcDTB8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=Vzlc1I6ucMnVCU7kmyhs6pRAV2HaB0YsAXWRLLs4HB8%3D\",\r\n \"Id\": \"f3b817b0-92ea-4136-8100-72e7607aefcc\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c69883a9-66a1-45eb-ba12-8d59830e9240.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=Lc%2BeCURv9jyzoZXHGGaQ5ezLgK6dg5j%2B0tBB85EgYf4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/2744f590-73b4-4829-bc13-27589bc0344b.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=IrToen2BCwiRtvYpEiuj9gkY7CU%2B2U53a0WtsPTpUi4%3D\",\r\n \"Id\": \"f46658df-aed3-4ae4-beea-05cd3f4f5888\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "11392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "038d739cfe3cad1b818147ed1d7dda4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A17%3A13Z&sr=b&sp=r&sig=X7Gm2ipWyd0b6bjD%2F37HuxDhcSp9jBt90BZDtTw4hZ0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A17%3A13Z&sr=b&sp=r&sig=WC7gPLE2bb27zkiaUZFj83F8EdJWAsqMrcLPB5HbzOY%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "603" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a3d250f5eb88af0589cdaca37ec40d4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=xYezFUVkv9Q08M9nsYsxzcMioUCWDdJr7We%2BuOQ7N2I%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=qaT9sy%2FaXQIxfvGaCa7a2OxaoRiOU97LQvjLWGhDeFY%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"Alias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "3459" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e84579b5e25aa110a7c95f661f14cc7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:36 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A19%3A14Z&sr=b&sp=r&sig=ROq6oQAVWRpJ8%2FbVBGUdBtWgTuXwk4yV5uPouYWWHLk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A19%3A14Z&sr=b&sp=r&sig=4wTuQy8JjOQ47DYILoJoqwpnt%2FaeDJZg%2FFJRdzuDXgw%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "607" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9eeae89ccbb9a36cab1965aa64ebdcdc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:49:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/8f1ced01-5081-41b4-9d4c-3dc2a33ac92c?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy84ZjFjZWQwMS01MDgxLTQxYjQtOWQ0Yy0zZGMyYTMzYWM5MmM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=FOhhEEUFipDnm457JwOQ9EOVgeeU6SoWJbhixUoeBXk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=tT2IQmlmc0G0AQxUBwCc4qlfQCr02hpCnmZ1RpIDRuU%3D\",\r\n \"Id\": \"8f1ced01-5081-41b4-9d4c-3dc2a33ac92c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0f93770a500ba432898fbec091e98aba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:14 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=tT2IQmlmc0G0AQxUBwCc4qlfQCr02hpCnmZ1RpIDRuU%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=FOhhEEUFipDnm457JwOQ9EOVgeeU6SoWJbhixUoeBXk%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "745" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e8ce02bcb43aa537a1085fe14fe11544" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=7OtSgLJTsbyYYaLjzgj6Sk8%2FynuhNlwdAsbatHq7gMk%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=JU72h4lMbqzgrASIOPMc5uWEQb1Cwaijx8PMV%2FKV83g%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "764" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "3bd1ef610959a7da97895c51460bf6bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:21 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=st7NqJ915wiY3TgSQfiZAMU5Pgn6zR1ahJ4293P2%2Bm4%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=kftd68hYKBuLBqoouXb%2FxvoHypcTGCaaqahinoXsaGE%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "725" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a8ec669b46eaba18bccfeb0924c98d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:25 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=4nr50D2rAXhN29oF2QOZkz0%2BfVQGIr9xpXSg0%2F46ruc%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=gvARbA0x1qjb%2BzA%2Fz1yPQ1pyU0qHsvrw2siEZyv8mGA%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "749" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "288a9649fbb6a846bb035ecdeb59f73f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:30 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=RrRNQcD3LsY6%2By449%2FJkyyDX1S%2FxWhWgbFkgHfrRv4w%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=GfzVWkaNoB3awAxc9nJQfVSJcLMuL0eq%2FSUJqLfmKSo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "750" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "119976734ff7a1b68531ca6d0ccb68a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:34 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/f3b817b0-92ea-4136-8100-72e7607aefcc?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy9mM2I4MTdiMC05MmVhLTQxMzYtODEwMC03MmU3NjA3YWVmY2M/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=JU72h4lMbqzgrASIOPMc5uWEQb1Cwaijx8PMV%2FKV83g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=7OtSgLJTsbyYYaLjzgj6Sk8%2FynuhNlwdAsbatHq7gMk%3D\",\r\n \"Id\": \"f3b817b0-92ea-4136-8100-72e7607aefcc\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "3134e1c48a6dac2eae6b97d0eb844dd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/830072f3-84cb-4b63-84ce-1e1c904d04bf?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy84MzAwNzJmMy04NGNiLTRiNjMtODRjZS0xZTFjOTA0ZDA0YmY/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=kftd68hYKBuLBqoouXb%2FxvoHypcTGCaaqahinoXsaGE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=st7NqJ915wiY3TgSQfiZAMU5Pgn6zR1ahJ4293P2%2Bm4%3D\",\r\n \"Id\": \"830072f3-84cb-4b63-84ce-1e1c904d04bf\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "206fb46fee2fa9e1804e4baf24b4c2b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:23 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/608ec71e-4f30-476d-8f81-fe38638bb0ab?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy82MDhlYzcxZS00ZjMwLTQ3NmQtOGY4MS1mZTM4NjM4YmIwYWI/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=gvARbA0x1qjb%2BzA%2Fz1yPQ1pyU0qHsvrw2siEZyv8mGA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=4nr50D2rAXhN29oF2QOZkz0%2BfVQGIr9xpXSg0%2F46ruc%3D\",\r\n \"Id\": \"608ec71e-4f30-476d-8f81-fe38638bb0ab\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "633" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2ba39d455544a99aa6a1ac22cdd2cc88" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:28 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/68850412-3592-4cf8-a9e3-41e845e6f9cd?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy82ODg1MDQxMi0zNTkyLTRjZjgtYTllMy00MWU4NDVlNmY5Y2Q/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=GfzVWkaNoB3awAxc9nJQfVSJcLMuL0eq%2FSUJqLfmKSo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=RrRNQcD3LsY6%2By449%2FJkyyDX1S%2FxWhWgbFkgHfrRv4w%3D\",\r\n \"Id\": \"68850412-3592-4cf8-a9e3-41e845e6f9cd\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "634" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6c0370fca78caa47871bd6f1dd78f585" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:32 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a208276d892ea43181657034f5d65edd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:38 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm259@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm260@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm261@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "373" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "afcca5c818fca6fc9344e5d0082bb8a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:48 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm259@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm260@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm261@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "373" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "86e460b2708ea75498faf39539c8435e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:51 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "afb760b517caac0cb68cf874c025400f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:00 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm259@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c1e9ccf3ba8aa54fad9d888421b3ac98" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:40 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm260@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0d5ce9b23238ab3db80687c3b2898908" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:43 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm261@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5577ae91be44a4dea9a9cdb9e44ba090" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:47 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm259@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "69db66c4e172a676bdd4f9034552b65d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:53 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm260@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "52e2e4ab9195a4a0ab937c37c6608c8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm261@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "7933bad7b940af7baac9804ae8e11fdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0a44063f0dbfa960a8f7c020168a9477" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:02 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"1320b99e-bc90-429d-be8c-318ee72708cc\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9ac88eacf703ab81822ce98a6cfca8a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a1b72f1c874a7ccaa03ee2473c7c94b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"5500af8a-41a8-46c4-8360-b1e462a97a72\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d9968a0c2a7ea4eca55355fabcd3d714" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:09 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"6500e321-e09a-4945-8b01-d16a635a4ab9\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "556b34616306ab8eb54b3b143b480bba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "d58af98f-969e-4fa9-89ab-49ddf10abaf4" + ], + "x-remoteapp-operation-tracking-id": [ + "d58af98f-969e-4fa9-89ab-49ddf10abaf4" + ], + "x-ms-request-id": [ + "2085d292a7f3af1fb0e31064879f5610" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:49:15 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e150d91cb220a4e0b0f2cbf92cc30870" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:54:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "3a911c9a9749afffb3f4b18c1f504e8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:59:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2092522f3b48a0bd81a8d1be413e7f98" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 03:04:22 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2aa3fff09301a922ab8e23e0b49e615d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 03:09:24 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "fa8ffb89e9f3a9bf90a77c24dab268b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 03:14:26 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc" + } +} \ No newline at end of file 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 7deac15880c7..c9824c443950 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj @@ -53,7 +53,6 @@ - diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs index 27192cbb3e71..b818eed32a5c 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs @@ -456,6 +456,24 @@ internal static string UseageNotFound { } } + /// + /// Looks up a localized string similar to https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/. + /// + internal static string VNetDeprecatedUrl { + get { + return ResourceManager.GetString("VNetDeprecatedUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This cmdlet {0} has been deprecated. See x {1}. + /// + internal static string VNetDeprecateed { + get { + return ResourceManager.GetString("VNetDeprecateed", resourceCulture); + } + } + /// /// Looks up a localized string similar to This operation will reset the shared key for the VNet's VPN device. This will interrupt connectivity to the on-premises network until you configure the VPN device to use the new shared key.. /// diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx index 947e00dc723e..ca3a19678ad3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx @@ -261,4 +261,10 @@ Location must be supplied for Cloud only environtments + + https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/ + + + This cmdlet {0} has been deprecated. See x {1} + \ No newline at end of file diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs index d15c07604f31..f55adc085959 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs @@ -1,9 +1,22 @@ -using Microsoft.WindowsAzure.Management.RemoteApp; +// ---------------------------------------------------------------------------------- +// +// 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.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; -using System.Collections.Generic; using System.Management.Automation; -using System.Reflection; namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { @@ -11,8 +24,11 @@ public class VNetDeprecated : RdsCmdlet { protected override void ProcessRecord() { - string message = String.Format("This cmdlet {0} has been deprecated. See x {1}", - this.GetType().Name, "https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/"); + string message = String.Format(Commands_RemoteApp.VNetDeprecateed, + this.GetType().Name, Commands_RemoteApp.VNetDeprecatedUrl); + + WriteErrorWithTimestamp(Commands_RemoteApp.VNetTimeout); + throw new RemoteAppServiceException(message, ErrorCategory.InvalidOperation); } } From edbc5c8ea2d3e1f148dfad1770da039f49c72706 Mon Sep 17 00:00:00 2001 From: Bob Landau Date: Mon, 10 Aug 2015 06:25:37 -0700 Subject: [PATCH 14/58] Updating code based off of the review --- src/AzurePowershell.sln | 9 +- .../Commands.ScenarioTest.csproj | 1 - ....ResourceManagement.Automation.Test.csproj | 2 +- .../Commands.RemoteAppScenarioTest.csproj | 84 + .../CreateCloudCollection.cs | 22 +- .../Scripts/RemoteAppCI_Test.ps1 | 255 ++ .../TestRemoteAppEndToEnd.json | 2046 +++++++++++++++++ .../Commands.RemoteApp.Test.csproj | 1 - .../Commands.RemoteApp.Designer.cs | 18 + .../Commands.RemoteApp.resx | 6 + .../Commands.RemoteApp/Vnet/VNetDeprecated.cs | 26 +- 11 files changed, 2457 insertions(+), 13 deletions(-) create mode 100644 src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj rename src/{Common/Commands.ScenarioTest/RemoteAppTests => ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest}/CreateCloudCollection.cs (64%) create mode 100644 src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 create mode 100644 src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json diff --git a/src/AzurePowershell.sln b/src/AzurePowershell.sln index d38164fd5238..7ea6990b0d55 100644 --- a/src/AzurePowershell.sln +++ b/src/AzurePowershell.sln @@ -230,6 +230,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AzureBackup", "Res EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AzureBackup.Test", "ResourceManager\AzureBackup\Commands.AzureBackup.Test\Commands.AzureBackup.Test.csproj", "{678AE95D-2364-47D7-888C-3FFA6D412CC8}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RemoteAppScenarioTest", "ServiceManagement\RemoteApp\Commands.RemoteApp.ScenarioTest\Commands.RemoteAppScenarioTest.csproj", "{C2FA83A2-8668-49DD-A1A0-0359653571CA}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -572,11 +574,16 @@ Global {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Debug|Any CPU.Build.0 = Debug|Any CPU {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Release|Any CPU.ActiveCfg = Release|Any CPU {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Release|Any CPU.Build.0 = Release|Any CPU + {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C2FA83A2-8668-49DD-A1A0-0359653571CA}.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} @@ -587,7 +594,6 @@ 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} @@ -618,5 +624,6 @@ Global {F220C306-29A3-4511-8518-A58A55C60D07} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {678AE95D-2364-47D7-888C-3FFA6D412CC8} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {C2FA83A2-8668-49DD-A1A0-0359653571CA} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection EndGlobal diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index c251a827275d..8b3329776273 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -302,7 +302,6 @@ True Resources.resx - 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 367cce1034ff..7ec8839c45d3 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 @@ -6,7 +6,7 @@ 2.0 - {127D0D51-FDEA-4E1A-8CD8-34DEB5C2F7F6} + {59D1B5DC-9175-43EC-90C6-CBA601B3565F} Library Properties Microsoft.Azure.Commands.ResourceManager.Automation.Test diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj new file mode 100644 index 000000000000..52e6e747cb35 --- /dev/null +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj @@ -0,0 +1,84 @@ + + + + + Debug + AnyCPU + {C2FA83A2-8668-49DD-A1A0-0359653571CA} + Library + Properties + Commands.RemoteAppScenarioTests + Commands.RemoteAppScenarioTests + v4.5 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\..\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.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + + + + False + ..\..\..\..\..\..\..\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll + + + + + + + + ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll + + + + + + + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + + + + + + + + + PreserveNewest + + + + + + \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs similarity index 64% rename from src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs rename to src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs index ce9187141c3a..2a5116eb3cb1 100644 --- a/src/Common/Commands.ScenarioTest/RemoteAppTests/CreateCloudCollection.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs @@ -1,4 +1,19 @@ -using Microsoft.Azure.Common.Authentication; +// ---------------------------------------------------------------------------------- +// +// 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.Collections.ObjectModel; @@ -23,8 +38,7 @@ protected Collection RunPowerShellTest(params string[] scripts) Collection result = new Collection(); EnvironmentSetupHelper helper = new EnvironmentSetupHelper(); - modules = Directory.GetFiles(@"ServiceManagement\Azure\RemoteApp", "*.ps1").ToList(); - + modules = Directory.GetFiles(@"..\..\Scripts", "*.ps1").ToList(); helper.SetupSomeOfManagementClients(); helper.SetupEnvironment(AzureModule.AzureServiceManagement); helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray()); @@ -43,7 +57,7 @@ protected Collection RunPowerShellTest(params string[] scripts) [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestRemoteAppEndToEnd() { - System.Environment.SetEnvironmentVariable("rdfeNameSpace", "rdst15"); + System.Environment.SetEnvironmentVariable("rdfeNameSpace", "rdsr8"); RunPowerShellTest("TestRemoteAppEndToEnd"); } } diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 new file mode 100644 index 000000000000..f3da3f38ce72 --- /dev/null +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 @@ -0,0 +1,255 @@ + +function PollingInterval() +{ + if ($env:AZURE_TEST_MODE -eq 'Playback') + { + $pollingIntervalSecs = 5 + } + else + { + $pollingIntervalSecs = 60 * 5 + } + $pollingIntervalSecs +} + +function Assert([ScriptBlock] $Condition) +{ + if ((& $Condition) -eq $false) + { + throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)" + } +} + +<# + This will pick a location, image, billing plan and create a ARA App collection and returns the collection name. +#> +function CreateCloudCollection([string] $Collection) +{ + + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + [PSObject[]] $locationList = Get-AzureRemoteAppLocation | % Name + Assert -Condition {$locationList -ne $null -or $locationList.Count -lt 1} + + [PSObject[]] $templateImageList = Get-AzureRemoteAppTemplateImage | ? {$_.Type -eq 'Platform' -and $_.OfficeType -ne 'Office365'} + Assert -Condition {$templateImageList -ne $null -or $templateImageList.Count -lt 1} + + $templateImage = $null + $locCounter = 0 + $imageCounter = 0 + $found = $false + do + { + $location = $locationList[$locCounter] + do + { + $templateImage = $templateImageList[$imageCounter] + if ($templateImage.RegionList -contains $location) + { + $found = $true + } + + $imageCounter++ + } while ($imageCounter -lt $templateImageList.Count -and -not $found) + + $locCounter++ + } while ($locCounter -lt $locationList.Count -and -not $found) + + Assert -Condition {$found} + + $billingPlans = Get-AzureRemoteAppPlan | % Name + $billingPlan = $billingPlans[0] + Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)} + + Write-Verbose "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($templateImage.Name) -Plan $billingPlan -Location $location -Description 'Test Collection'" + $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $templateImage.Name -Plan $billingPlan -Location $location -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + do + { + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) + + $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Write-Verbose "Collection state: $($collectionState.Status)" + } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) succsssfully created this collection $Collection" +} + + +<# + This will pick a 5 applications to publish, verifies that they've been published and returns the Publishing Info. +#> +function PublishRemoteApplications([string] $Collection) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $numOfApps = 5 + $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Assert({$availablePrograms.Count -ge $numOfApps}) + + $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $programsToPublish = $availablePrograms[0..2] + $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)] + Assert({$programsToPublish.Count -eq $numOfApps}) + $applications = $programsToPublish | % { + Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $publishedPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Assert -Condition {($publishedPrograms.Count - $currentPrograms.Count) -eq $numOfApps} + + $applications | % {Write-Verbose "($([IO.FileInfo]$_.ApplicationVirtualPath))"} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" + + $applications +} + + +<# + This will pick a add the given users to the collection. +#> +function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $msaUsers | % { + Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Assert -Condition {($previousUsers.Count + $msaUsers.Count) -eq $currentUsers.Count} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" + + $currentUsers | % {Write-Verbose "Username: $($_.Name),and Type: $($_.UserIdType)" } +} + +<# + This will remove the given users from the collection. +#> +function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + $msaUsers | % { + Remove-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + } + + $currentUssers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er + Assert -Condition {$currentUsers -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" +} + +<# + This will unpublish the specified applications from the collection. +#> +function UnpublishRemoteApplications([string] $Collection, [string[]] $applications) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $applications | % { + Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er | Out-Null + if ($? -eq $false) + { + throw $er + } + } + + Sleep 60 # seconds + $remainingApps = Get-AzureRemoteAppProgram $Collection | % Alias + + $failedToUnpublish = $remainingApps | ? {$applications -contains $_} + Assert -Condition {$failedToUnpublish -eq $null} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" +} + +<# + This delete the collection +#> +function DeleteRemoteAppCollection([string] $Collection) +{ + Write-Verbose "Entering $($MyInvocation.MyCommand.name)" + $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection + + do + { + Write-Verbose "Waiting current time: $(Get-Date)" + sleep -Seconds (PollingInterval) + + $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er + if ($? -eq $false) + { + throw $er + } + + Write-Verbose "Collection state: $($collectionState.Status)" + } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending') + + Assert -Condition {$collectionState.Status -eq 'Success'} + Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully" +} + + +function TestRemoteAppEndToEnd() +{ + $collection = 'CICollection' + $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com" + Set-Variable -Name VerbosePreference -Value Continue + + Write-Verbose "Starting current time: $(Get-Date)" + CreateCloudCollection $collection + $applications = PublishRemoteApplications $collection + AddRemoteAppUsers $collection $msaUsers + RemoveRemoteAppUsers $collection $msaUsers + UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias}) + DeleteRemoteAppCollection $collection +} diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json new file mode 100644 index 000000000000..b012adbd57da --- /dev/null +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json @@ -0,0 +1,2046 @@ +{ + "Entries": [ + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/locations?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9sb2NhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "bc63553bb95fa57db8cd5045aa171781" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:45 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/templateImages?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC90ZW1wbGF0ZUltYWdlcz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Id\": \"9a920fd4-f697-4e98-9c48-671642c39888\",\r\n \"Name\": \"asuploaded\",\r\n \"NumberOfLinkedCollections\": 1,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": null,\r\n \"RegionList\": [\r\n \"West US\"\r\n ],\r\n \"Sas\": \"?sv=2012-02-12&sr=b&si=9a920fd4-f697-4e98-9c48-671642c39888&sig=s1Hf1e2aKJV76DTAoYsfdsuSop3A1OxJTD%2BHfzXIEnw%3D\",\r\n \"SasExpiry\": \"2015-05-25T21:32:34.508Z\",\r\n \"Size\": 42949673472,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 0,\r\n \"UploadCompleteTime\": \"2015-05-22T21:59:16.541Z\",\r\n \"UploadSetupTime\": \"2015-05-22T21:32:34.714Z\",\r\n \"UploadStartTime\": \"2015-05-22T21:58:06.791Z\",\r\n \"Uri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/goldimages/9a920fd4-f697-4e98-9c48-671642c39888.vhd\"\r\n },\r\n {\r\n \"Id\": \"d650edb6-718c-4e62-9fd7-fa244ad23230\",\r\n \"Name\": \"uitestimported\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": null,\r\n \"RegionList\": [\r\n \"West US\"\r\n ],\r\n \"Sas\": null,\r\n \"SasExpiry\": \"1900-01-01T00:00:00Z\",\r\n \"Size\": 136367309312,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 0,\r\n \"UploadCompleteTime\": \"2015-05-22T22:48:18.717Z\",\r\n \"UploadSetupTime\": \"2015-05-22T22:33:39.841Z\",\r\n \"UploadStartTime\": \"2015-05-22T22:46:55.234Z\",\r\n \"Uri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/goldimages/d650edb6-718c-4e62-9fd7-fa244ad23230.vhd\"\r\n },\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-05-14T23:02:10.156Z\",\r\n \"UploadSetupTime\": \"2015-05-14T23:02:10.156Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n },\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\",\r\n \"Name\": \"Windows Server RDSHwO365P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\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 ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-05-13T20:37:23.415Z\",\r\n \"UploadSetupTime\": \"2015-05-13T20:37:23.415Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "2573" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "18079624a242a83cb6542dad91bfd08e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:47 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/BillingPlans?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9CaWxsaW5nUGxhbnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "ee65114e7743a1e3a08c43c20edc0886" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:49 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdsr8&action=register", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3I4JmFjdGlvbj1yZWdpc3Rlcg==", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n ConflictError\r\n The resource type rdsr8 is already registered for this subscription.\r\n", + "ResponseHeaders": { + "Content-Length": [ + "230" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9e516e5ed0bdafdda683cce8950fb769" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:53 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections?PopulateOnly=false&api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucz9Qb3B1bGF0ZU9ubHk9ZmFsc2UmYXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "309" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4" + ], + "x-remoteapp-operation-tracking-id": [ + "21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4" + ], + "x-ms-request-id": [ + "c9e82e35282ba9c0956b74f1baaa37d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:26:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "933b38d4739aa6869248a0ad6e449280" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:31:59 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5f044d4e0afaa4f0b3d4f3f18209d74a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:37:02 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d1653e5995b8a9b3adaa70f326815276" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:42:05 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2ad482e88defa95b9077f36899190038" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:08 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/a297f2a6-a708-4aa4-af73-1f5901db22bf.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=PRDpiH6AOQut60shbRW9AqO1DdynH%2F3WQJHIJtwzrbI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/17a5c61f-98b8-4e7b-9810-d008afd16474.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=3tLcFDKEA6QIKwX5VGMtRjYFyFImD1r8JlyZR3QyLos%3D\",\r\n \"Id\": \"230e0b5b-45f3-480a-b8d8-18b7e431d42e\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/7bd109ee-f5ab-4127-91cf-371fc43940b6.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=NXNnbysN%2FtrOVeOLOB0r3M%2BOO0gL%2BVJ7SFqjOY7519c%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/40c2cfac-f2db-48aa-94d7-0a1bf499927c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=YGrFS%2Flk2sJ0rCwIR0oipkHV%2F1lD2n3NLhQAEdnlQEA%3D\",\r\n \"Id\": \"2736d2ce-0afe-4085-acb7-19cd214a2b76\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c3f85baf-8640-404c-bf13-96174e7f80ba.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=KOnmOctNs2bLYyt%2FcBaSxSKA5r0h5tbZtHF9yEUUf6Y%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/12384e20-0252-4ad1-b87a-512a4539a5c3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=5LaNtBI49i3pkhwX2%2F%2F%2BQSv1nSU3zM8g71Wb7TB2N9o%3D\",\r\n \"Id\": \"2d97c080-59ba-4ce5-818a-4f7a7b46705f\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dfbb262b-a7c2-45d7-a21f-352239bec608.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=bsR660CobFGzsYme18FCydseVAQg8Bpk%2BCjH6AgVq0g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aa357ad8-c2c9-4486-8da2-5d42c89b9e22.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=uYDAc8iPqYoe6Hn%2FH%2B4sdmRrmZDwV%2FnA8DJoOaGAj6Y%3D\",\r\n \"Id\": \"3c84069d-8c27-4f8b-9ce6-3e0832f53586\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/ef8ad6a9-59ba-4e63-a994-496ded66e6fe.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=vEsxhpEIUKj8z8hMdqMjHaZ6aKN9YbAaKM%2B1Df4JhEk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/970bfc6b-8782-4d6f-af5e-631ca11a2b69.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=zgl7tI6u9MKTyMdYTtjnvJNFzXK7DjG0aqosn0gqFwY%3D\",\r\n \"Id\": \"56dc7a9c-ece0-4c31-94d8-b58526637dee\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/1bc40e92-d6f9-4a8b-a0c8-09ab4e53bef8.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=qF5mJ5tBVxru32r8MHJGUGtOpyH3GNRIVpdelfEE2sQ%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/f9387193-24f9-4cf9-b90f-7b123c183382.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=V6jWcNrL7IVMtncc5X6ChU5tTpVgjOJrub7fVZhlDwY%3D\",\r\n \"Id\": \"5f8b9797-3f6c-45cf-85e9-7e7bdb9dd9ca\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=7%2B8szZi3a72M%2FyKXrLzNhnNJUXQ98gqDa629N2KJ%2BiU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=PArQNcufYWu99zj5OWqcWVfzSjuUwsgfyyZJD1bWGVg%3D\",\r\n \"Id\": \"608ec71e-4f30-476d-8f81-fe38638bb0ab\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=FSQlO8EtPsfUx1wL%2FdMNFfNT%2FtEkCeTPQjW0gaVZ4Sg%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=G7KYBjUDfh1c7JB2sjimmhIu0FMl4DS2EBH7jZKuwAo%3D\",\r\n \"Id\": \"68850412-3592-4cf8-a9e3-41e845e6f9cd\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=EZyWroR4WBurhDjfGAGzQeeez99QXVlbIkK0izJqjnY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=5U3YZfgA2BxXaUECp93YbyoyvY1Z9Rj6Mj63CPNlaS0%3D\",\r\n \"Id\": \"830072f3-84cb-4b63-84ce-1e1c904d04bf\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/7692feba-5784-4148-93b1-d2b6a7914bd0.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=suI1%2F38txvkPSAe7%2BRGj5D4cFSICwRHhLMi1kYdM5yA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d3839470-5113-4200-9534-13a6b50e0ba7.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=yGoKsogq8yYSnEd%2FJJv8oTbDZXhidjBZsnJmQVSjIfw%3D\",\r\n \"Id\": \"83541a22-179e-4ded-a042-af9557da897a\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=97l55zEK8vUWpsk03B%2Fi6Mr7%2BpFEgPKmZSx5Ki937no%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=qd9Mp8jyq820ik%2FZbMeGgiHXb5IGJEkQHsvcY4Sox3I%3D\",\r\n \"Id\": \"8f1ced01-5081-41b4-9d4c-3dc2a33ac92c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/ec86ce2b-d9cd-4db6-87ef-fa1636fd684d.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=I2gHBFQb1snT%2FMY0ZKGYbETWA1DxT%2BHg07CblXzxByE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9b7d39ce-32d5-4ab1-9e2d-d7665c899203.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=kntB9p2cqBG5gxQ7TtOWwauLQ5zZLGawLmj%2BJ%2B4GnJA%3D\",\r\n \"Id\": \"9758f483-ee6a-4622-ba22-494291ee6851\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/b32a6a1d-2279-4c34-9ebd-4835678a584d.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=1pezOgkS2R122G1ZK5%2F%2FUo1ZU048nRU7CNNP0vuE4dY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/554d7882-09d9-4868-b912-ed9de6e89d90.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=kZR9nRQNV5jKeeMlWLWB%2FHzJLwsFZKKWzJefKGoYpYk%3D\",\r\n \"Id\": \"c140cb4f-6118-4171-960a-3c9f6b8a8ab1\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/31ce03f1-a670-4c7c-990b-d19896e530f3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=GLIsL7T0FZobDGHgCapK5v%2Fic1%2FUF3Nhw6OaKvQkP00%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/24b66c12-1b28-4922-b730-67543ba3934e.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=N45%2BUIGiiG6YmN4bO5ZkK4ZpUUboeb2AN2nmGMO2OQQ%3D\",\r\n \"Id\": \"d6ce5365-a323-4d4c-b00a-3f68f0c1adad\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/617f7b95-56bf-4609-bcd5-9205c9857945.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=jzmuXA1qRYBcIzVJ2d96Vl4EDPUjv%2Br7ADV4NUH8M8Q%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/3afa0cd6-5f61-423d-ae62-29dc10f0b2b1.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=K0kqVZNdZi1Xucqa1BLAzuKOpTvI1AKRgqcWjYfCBEc%3D\",\r\n \"Id\": \"dee0ec9e-3138-4be8-8402-01317456675d\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c047fc28-136c-4f5a-a20b-fd76284e7f11.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=CfXi17wShsPyJ0%2FPA%2BsN6r%2F8WWNm9NjpX63OR6m02Bk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/03ee9238-80da-4226-b1f7-b3782f43bc51.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=7i%2FRTB3ybrRVYGBex%2FQ%2Fyu2YOHXJTk2LzG24akAOhsY%3D\",\r\n \"Id\": \"e16dcecb-bf16-4e69-8f37-2606136ce69c\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=RXeY%2FF2HyTeFWXv3TMtSaBtG%2BDotF5Fc1LrDKtcDTB8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=Vzlc1I6ucMnVCU7kmyhs6pRAV2HaB0YsAXWRLLs4HB8%3D\",\r\n \"Id\": \"f3b817b0-92ea-4136-8100-72e7607aefcc\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c69883a9-66a1-45eb-ba12-8d59830e9240.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=Lc%2BeCURv9jyzoZXHGGaQ5ezLgK6dg5j%2B0tBB85EgYf4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/2744f590-73b4-4829-bc13-27589bc0344b.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=IrToen2BCwiRtvYpEiuj9gkY7CU%2B2U53a0WtsPTpUi4%3D\",\r\n \"Id\": \"f46658df-aed3-4ae4-beea-05cd3f4f5888\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "11392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "038d739cfe3cad1b818147ed1d7dda4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A17%3A13Z&sr=b&sp=r&sig=X7Gm2ipWyd0b6bjD%2F37HuxDhcSp9jBt90BZDtTw4hZ0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A17%3A13Z&sr=b&sp=r&sig=WC7gPLE2bb27zkiaUZFj83F8EdJWAsqMrcLPB5HbzOY%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "603" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a3d250f5eb88af0589cdaca37ec40d4a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=xYezFUVkv9Q08M9nsYsxzcMioUCWDdJr7We%2BuOQ7N2I%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=qaT9sy%2FaXQIxfvGaCa7a2OxaoRiOU97LQvjLWGhDeFY%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"Alias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "3459" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e84579b5e25aa110a7c95f661f14cc7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:36 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A19%3A14Z&sr=b&sp=r&sig=ROq6oQAVWRpJ8%2FbVBGUdBtWgTuXwk4yV5uPouYWWHLk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A19%3A14Z&sr=b&sp=r&sig=4wTuQy8JjOQ47DYILoJoqwpnt%2FaeDJZg%2FFJRdzuDXgw%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "607" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9eeae89ccbb9a36cab1965aa64ebdcdc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:49:13 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/8f1ced01-5081-41b4-9d4c-3dc2a33ac92c?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy84ZjFjZWQwMS01MDgxLTQxYjQtOWQ0Yy0zZGMyYTMzYWM5MmM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=FOhhEEUFipDnm457JwOQ9EOVgeeU6SoWJbhixUoeBXk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=tT2IQmlmc0G0AQxUBwCc4qlfQCr02hpCnmZ1RpIDRuU%3D\",\r\n \"Id\": \"8f1ced01-5081-41b4-9d4c-3dc2a33ac92c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0f93770a500ba432898fbec091e98aba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:14 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=tT2IQmlmc0G0AQxUBwCc4qlfQCr02hpCnmZ1RpIDRuU%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=FOhhEEUFipDnm457JwOQ9EOVgeeU6SoWJbhixUoeBXk%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "745" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e8ce02bcb43aa537a1085fe14fe11544" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=7OtSgLJTsbyYYaLjzgj6Sk8%2FynuhNlwdAsbatHq7gMk%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=JU72h4lMbqzgrASIOPMc5uWEQb1Cwaijx8PMV%2FKV83g%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "764" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "200" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "3bd1ef610959a7da97895c51460bf6bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:21 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=st7NqJ915wiY3TgSQfiZAMU5Pgn6zR1ahJ4293P2%2Bm4%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=kftd68hYKBuLBqoouXb%2FxvoHypcTGCaaqahinoXsaGE%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "725" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a8ec669b46eaba18bccfeb0924c98d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:25 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=4nr50D2rAXhN29oF2QOZkz0%2BfVQGIr9xpXSg0%2F46ruc%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=gvARbA0x1qjb%2BzA%2Fz1yPQ1pyU0qHsvrw2siEZyv8mGA%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "749" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "288a9649fbb6a846bb035ecdeb59f73f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:30 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=RrRNQcD3LsY6%2By449%2FJkyyDX1S%2FxWhWgbFkgHfrRv4w%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=GfzVWkaNoB3awAxc9nJQfVSJcLMuL0eq%2FSUJqLfmKSo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "750" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "119976734ff7a1b68531ca6d0ccb68a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:34 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/f3b817b0-92ea-4136-8100-72e7607aefcc?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy9mM2I4MTdiMC05MmVhLTQxMzYtODEwMC03MmU3NjA3YWVmY2M/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=JU72h4lMbqzgrASIOPMc5uWEQb1Cwaijx8PMV%2FKV83g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=7OtSgLJTsbyYYaLjzgj6Sk8%2FynuhNlwdAsbatHq7gMk%3D\",\r\n \"Id\": \"f3b817b0-92ea-4136-8100-72e7607aefcc\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "3134e1c48a6dac2eae6b97d0eb844dd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:18 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/830072f3-84cb-4b63-84ce-1e1c904d04bf?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy84MzAwNzJmMy04NGNiLTRiNjMtODRjZS0xZTFjOTA0ZDA0YmY/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=kftd68hYKBuLBqoouXb%2FxvoHypcTGCaaqahinoXsaGE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=st7NqJ915wiY3TgSQfiZAMU5Pgn6zR1ahJ4293P2%2Bm4%3D\",\r\n \"Id\": \"830072f3-84cb-4b63-84ce-1e1c904d04bf\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "609" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "206fb46fee2fa9e1804e4baf24b4c2b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:23 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/608ec71e-4f30-476d-8f81-fe38638bb0ab?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy82MDhlYzcxZS00ZjMwLTQ3NmQtOGY4MS1mZTM4NjM4YmIwYWI/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=gvARbA0x1qjb%2BzA%2Fz1yPQ1pyU0qHsvrw2siEZyv8mGA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=4nr50D2rAXhN29oF2QOZkz0%2BfVQGIr9xpXSg0%2F46ruc%3D\",\r\n \"Id\": \"608ec71e-4f30-476d-8f81-fe38638bb0ab\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "633" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2ba39d455544a99aa6a1ac22cdd2cc88" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:28 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/68850412-3592-4cf8-a9e3-41e845e6f9cd?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy82ODg1MDQxMi0zNTkyLTRjZjgtYTllMy00MWU4NDVlNmY5Y2Q/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=GfzVWkaNoB3awAxc9nJQfVSJcLMuL0eq%2FSUJqLfmKSo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=RrRNQcD3LsY6%2By449%2FJkyyDX1S%2FxWhWgbFkgHfrRv4w%3D\",\r\n \"Id\": \"68850412-3592-4cf8-a9e3-41e845e6f9cd\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "634" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6c0370fca78caa47871bd6f1dd78f585" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:32 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "a208276d892ea43181657034f5d65edd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:38 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm259@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm260@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm261@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "373" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "afcca5c818fca6fc9344e5d0082bb8a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:48 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm259@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm260@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm261@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "373" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "86e460b2708ea75498faf39539c8435e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:51 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[]", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "afb760b517caac0cb68cf874c025400f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:00 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm259@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "c1e9ccf3ba8aa54fad9d888421b3ac98" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:40 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm260@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0d5ce9b23238ab3db80687c3b2898908" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:43 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm261@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "5577ae91be44a4dea9a9cdb9e44ba090" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:47 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm259@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "69db66c4e172a676bdd4f9034552b65d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:53 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm260@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "52e2e4ab9195a4a0ab937c37c6608c8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:55 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm261@live.com\"\r\n }\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "7933bad7b940af7baac9804ae8e11fdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:47:57 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "0a44063f0dbfa960a8f7c020168a9477" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:02 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"1320b99e-bc90-429d-be8c-318ee72708cc\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "9ac88eacf703ab81822ce98a6cfca8a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:04 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "6a1b72f1c874a7ccaa03ee2473c7c94b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:06 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"5500af8a-41a8-46c4-8360-b1e462a97a72\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "d9968a0c2a7ea4eca55355fabcd3d714" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:09 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "[\r\n \"6500e321-e09a-4945-8b01-d16a635a4ab9\"\r\n]", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ], + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "556b34616306ab8eb54b3b143b480bba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:48:10 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-clouddv-tracking-id": [ + "d58af98f-969e-4fa9-89ab-49ddf10abaf4" + ], + "x-remoteapp-operation-tracking-id": [ + "d58af98f-969e-4fa9-89ab-49ddf10abaf4" + ], + "x-ms-request-id": [ + "2085d292a7f3af1fb0e31064879f5610" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:49:15 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "e150d91cb220a4e0b0f2cbf92cc30870" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:54:17 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "3a911c9a9749afffb3f4b18c1f504e8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 02:59:20 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2092522f3b48a0bd81a8d1be413e7f98" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 03:04:22 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "84" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "2aa3fff09301a922ab8e23e0b49e615d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 03:09:24 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01", + "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json; charset=utf-8" + ], + "x-ms-version": [ + "2014-08-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "81" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "uswest" + ], + "x-ms-request-id": [ + "fa8ffb89e9f3a9bf90a77c24dab268b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 08 Jun 2015 03:14:26 GMT" + ], + "Server": [ + "1.0.6190.5955", + "(rd_rdfe_n.150416-1241)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc" + } +} \ No newline at end of file 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 7deac15880c7..c9824c443950 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Commands.RemoteApp.Test.csproj @@ -53,7 +53,6 @@ - diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs index 27192cbb3e71..b818eed32a5c 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs @@ -456,6 +456,24 @@ internal static string UseageNotFound { } } + /// + /// Looks up a localized string similar to https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/. + /// + internal static string VNetDeprecatedUrl { + get { + return ResourceManager.GetString("VNetDeprecatedUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This cmdlet {0} has been deprecated. See x {1}. + /// + internal static string VNetDeprecateed { + get { + return ResourceManager.GetString("VNetDeprecateed", resourceCulture); + } + } + /// /// Looks up a localized string similar to This operation will reset the shared key for the VNet's VPN device. This will interrupt connectivity to the on-premises network until you configure the VPN device to use the new shared key.. /// diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx index 947e00dc723e..ca3a19678ad3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx @@ -261,4 +261,10 @@ Location must be supplied for Cloud only environtments + + https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/ + + + This cmdlet {0} has been deprecated. See x {1} + \ No newline at end of file diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs index d15c07604f31..f55adc085959 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs @@ -1,9 +1,22 @@ -using Microsoft.WindowsAzure.Management.RemoteApp; +// ---------------------------------------------------------------------------------- +// +// 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.RemoteApp; +using Microsoft.WindowsAzure.Management.RemoteApp; using Microsoft.WindowsAzure.Management.RemoteApp.Models; using System; -using System.Collections.Generic; using System.Management.Automation; -using System.Reflection; namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets { @@ -11,8 +24,11 @@ public class VNetDeprecated : RdsCmdlet { protected override void ProcessRecord() { - string message = String.Format("This cmdlet {0} has been deprecated. See x {1}", - this.GetType().Name, "https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/"); + string message = String.Format(Commands_RemoteApp.VNetDeprecateed, + this.GetType().Name, Commands_RemoteApp.VNetDeprecatedUrl); + + WriteErrorWithTimestamp(Commands_RemoteApp.VNetTimeout); + throw new RemoteAppServiceException(message, ErrorCategory.InvalidOperation); } } From a0473e042bf33f16155b5554ca65716172195aa8 Mon Sep 17 00:00:00 2001 From: OJDUDE Date: Mon, 10 Aug 2015 17:30:34 -0700 Subject: [PATCH 15/58] Don't use default settings when settings are missing In the previous change, default settings were used for AKV and AutoBackup if the settings are not entered by the user. This is the wrong behavior as it would always update the VM with the default settings for feature that the user did not include in the set command. --- ...tualMachineSqlServerExtensionCmdletBase.cs | 38 +++++++++++++------ 1 file changed, 27 insertions(+), 11 deletions(-) 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 a5ca651f78fa..015de4470e24 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/VirtualMachineSqlServerExtensionCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/VirtualMachineSqlServerExtensionCmdletBase.cs @@ -75,22 +75,38 @@ public VirtualMachineSqlServerExtensionCmdletBase() /// protected string GetPublicConfiguration() { + // Create auto backup settings if set + PublicAutoBackupSettings autoBackupSettings = null; + + if (this.AutoBackupSettings != null) + { + autoBackupSettings = new PublicAutoBackupSettings() + { + Enable = this.AutoBackupSettings.Enable, + EnableEncryption = this.AutoBackupSettings.EnableEncryption, + RetentionPeriod = this.AutoBackupSettings.RetentionPeriod + }; + } + + // Create Key vault settings if set + PublicKeyVaultCredentialSettings akvSettings = null; + + if(this.KeyVaultCredentialSettings != null) + { + akvSettings = new PublicKeyVaultCredentialSettings() + { + Enable = this.KeyVaultCredentialSettings == null ? false : this.KeyVaultCredentialSettings.Enable, + CredentialName = this.KeyVaultCredentialSettings == null ? null : this.KeyVaultCredentialSettings.CredentialName + }; + } + return JsonUtilities.TryFormatJson(JsonConvert.SerializeObject( new SqlServerPublicSettings { AutoPatchingSettings = this.AutoPatchingSettings, AutoTelemetrySettings = this.AutoTelemetrySettings, - AutoBackupSettings = new PublicAutoBackupSettings() - { - Enable = this.AutoBackupSettings == null ? false : this.AutoBackupSettings.Enable, - EnableEncryption = this.AutoBackupSettings == null ? false : this.AutoBackupSettings.EnableEncryption, - RetentionPeriod = this.AutoBackupSettings == null ? 0 : this.AutoBackupSettings.RetentionPeriod - }, - KeyVaultCredentialSettings = new PublicKeyVaultCredentialSettings() - { - Enable = this.KeyVaultCredentialSettings == null ? false : this.KeyVaultCredentialSettings.Enable, - CredentialName = this.KeyVaultCredentialSettings == null ? null : this.KeyVaultCredentialSettings.CredentialName - } + AutoBackupSettings = autoBackupSettings, + KeyVaultCredentialSettings = akvSettings })); } From c8658ea8ee86d3ca0b3b0286ec2a79355a8ca471 Mon Sep 17 00:00:00 2001 From: OJDUDE Date: Thu, 13 Aug 2015 20:04:09 -0700 Subject: [PATCH 16/58] SQL Server IaaS Extension cmdlets update 1. Don't print or attempt to print private settings from the Get. Instead print *** if the options are set. 2. Print a message to educate the user when disabling Azure key vault that existing credentials will not be removed but AKV status will not be reported. 3. Update the help file. 4. No new tests are required as the current tests already cover the changes in this changeset. --- .../SqlServer/GetAzureVMSqlServerExtension.cs | 26 +- .../SqlServer/SetAzureVMSqlServerExtension.cs | 6 + ...re.Commands.ServiceManagement.dll-Help.xml | 1295 ++++++++++------- 3 files changed, 821 insertions(+), 506 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 d01c337cb107..d1bcacc00785 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/GetAzureVMSqlServerExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/GetAzureVMSqlServerExtension.cs @@ -55,7 +55,7 @@ internal void ExecuteCommand() return this.GetExtensionContext(r); }), true); - } + } protected override void ProcessRecord() { @@ -69,7 +69,7 @@ protected override void ProcessRecord() /// private VirtualMachineSqlServerExtensionContext GetExtensionContext(ResourceExtensionReference r) { - string extensionName= VirtualMachineSqlServerExtensionCmdletBase.ExtensionPublishedNamespace + "." + string extensionName = VirtualMachineSqlServerExtensionCmdletBase.ExtensionPublishedNamespace + "." + VirtualMachineSqlServerExtensionCmdletBase.ExtensionPublishedName; VirtualMachineSqlServerExtensionContext context = new VirtualMachineSqlServerExtensionContext @@ -162,7 +162,7 @@ private VirtualMachineSqlServerExtensionContext GetExtensionContext(ResourceExte NSM.DeploymentSlot.Production); } catch (CloudException e) - { + { if (e.Response.StatusCode != HttpStatusCode.NotFound) { throw; @@ -231,7 +231,11 @@ private AutoBackupSettings DeSerializeAutoBackupSettings(string category, string autoBackupSettings.RetentionPeriod = publicAutoBackupSettings.RetentionPeriod; autoBackupSettings.StorageAccessKey = "***"; autoBackupSettings.StorageUrl = "***"; - autoBackupSettings.Password = "***"; + + if (autoBackupSettings.EnableEncryption) + { + autoBackupSettings.Password = "***"; + } } } catch (JsonReaderException jre) @@ -246,7 +250,7 @@ private AutoBackupSettings DeSerializeAutoBackupSettings(string category, string } private KeyVaultCredentialSettings DeSerializeKeyVaultCredentialSettings(string category, string input) - { + { KeyVaultCredentialSettings kvtSettings = new KeyVaultCredentialSettings(); if (!string.IsNullOrEmpty(input)) @@ -256,13 +260,17 @@ private KeyVaultCredentialSettings DeSerializeKeyVaultCredentialSettings(string // we only print the public settings PublicKeyVaultCredentialSettings publicSettings = JsonConvert.DeserializeObject(input); - if(publicSettings != null) + if (publicSettings != null) { kvtSettings.CredentialName = publicSettings.CredentialName; kvtSettings.Enable = publicSettings.Enable; - kvtSettings.ServicePrincipalName = "***"; - kvtSettings.ServicePrincipalSecret = "***"; - kvtSettings.AzureKeyVaultUrl = "***"; + + if (kvtSettings.Enable) + { + kvtSettings.ServicePrincipalName = "***"; + kvtSettings.ServicePrincipalSecret = "***"; + kvtSettings.AzureKeyVaultUrl = "***"; + } } } catch (JsonReaderException jre) 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 ec64468197a0..11feb83842a3 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/SetAzureVMSqlServerExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/SqlServer/SetAzureVMSqlServerExtension.cs @@ -110,6 +110,12 @@ protected override void ProcessRecord() internal void ExecuteCommand() { ValidateParameters(); + + if ((this.KeyVaultCredentialSettings != null) && !this.KeyVaultCredentialSettings.Enable) + { + WriteVerboseWithTimestamp("SQL Server Azure key vault disabled. Previously configured credentials are not removed but no status will be reported"); + } + RemovePredicateExtensions(); AddResourceExtension(); WriteObject(VM); 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 96a2e9516e98..24f0f6d1ecd6 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 @@ -34825,228 +34825,481 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con - - - - Get-AzureVMSqlServerExtension - - - Gets the settings of the SQL Server IaaS Agent on a particular VM. - - - - - Get - AzureVMSqlServerExtension - - - - Gets the settings of the SQL Server IaaS Agent on a particular virtual machine. - - - - - Get-AzureVMSqlServerExtension - - VM - - The virtual machine to get the settings from. - - IPersistentVM - - - Version - - The specific version of the SQL Server IaaS Agent. - - string - - - - - - - Version - - The specific version of the SQL Server IaaS Agent. - - string - - string - - - - - - VM - - The virtual machine to get the settings from. - - IPersistentVM - - IPersistentVM - - - - - - - - - - - - - - - - + + + + + Get-AzureVMSqlServerExtension + + + Gets the settings of the SQL Server extension on a particular VM. + + + + + Get + AzureVMSqlServerExtension + + + + This cmdlet gets the settings of the SQL Server extension on a particular VM. + + + + + Get-AzureVMSqlServerExtension + + VM + + The virtual machine to get the settings from. + + IPersistentVM + + + Version + + The specific version of the Sql Server extension. + + string + + + + + + + Version + + The specific version of the Sql Server extension. + + + string + + string + + + + + + VM + + The virtual machine to get the settings from. + + + IPersistentVM + + IPersistentVM + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + +Get-AzureVM -ServiceName "service" -Name "vmname" | Get-AzureVMSqlServerExtension + +ExtensionName : SqlIaaSAgent +Publisher : Microsoft.SqlServer.Management +Version : 1.* +State : Enable +RoleName : afexttest +AutoPatchingSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoPatchingSettings +AutoBackupSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoBackupSettings +KeyVaultCredentialSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.KeyVaultCredentialSettings + + Description + ----------- + Gets the settings of the Sql Server extension on a particular VM using piped input. + + + + + + + + + + + - - - - - - - - - - - - + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + +Get-AzureVMSqlServerExtension-VM $vm + +ExtensionName : SqlIaaSAgent +Publisher : Microsoft.SqlServer.Management +Version : 1.0 +State : Enable +RoleName : vmname +AutoPatchingSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoPatchingSettings +AutoBackupSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoBackupSettings +KeyVaultCredentialSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.KeyVaultCredentialSettings + + Description + ----------- + Gets the settings of the Sql Server extension on a particular VM. + + + + + + + + + + + - - - - - - - - + + + -------------------------- EXAMPLE 3 -------------------------- + + + C:\PS> + + +Get-AzureVMSqlServerExtension -VM $vm -Version "1.0" + +ExtensionName : SqlIaaSAgent +Publisher : Microsoft.SqlServer.Management +Version : 1.0 +State : Enable +RoleName : vmname +AutoPatchingSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoPatchingSettings +AutoBackupSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoBackupSettings +KeyVaultCredentialSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.KeyVaultCredentialSettings + + Description + ----------- + Gets the settings of the particular version of Sql Server extension on a VM. + + + + + + + + + + + + + + + + + + + + - - - -------------------------- EXAMPLE 1 -------------------------- - - - - - - C:\PS> Get-AzureVMSqlServerExtension-VM $vm - - ExtensionName : SqlIaaSAgent - Publisher : Microsoft.SqlServer.Management - Version : 1.0 - State : Enable - RoleName : vmname - AutoPatchingSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoPatchingSettings - AutoBackupSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoBackupSettings - - - Gets the settings of the Sql Server extension on a particular virtual machine. - - - - - - - - - - - + + + + + New-AzureVMSqlServerKeyVaultCredentialConfig + + + Creates configuration object for SQL Server Azure Key Vault credential + + + + + New + AzureVMSqlServerKeyVaultCredentialConfig + + + + Creates configuration object for SQL Server Azure Key Vault credential + + + + + New-AzureVMSqlServerKeyVaultCredentialConfig + + Enable + + Enable is an optional value with a default value of false. If set to true, a SQL Server credential using Azure key vault is created when the configuration is used in Set-AzureVMSqlServerExtension. Otherwise, all SQL Server Azure key vault credential status reporting is disabled. Disabling this feature does not remove previously created SQL Server credential using Azure key vault. + + bool + + + CredentialName + + The name to use when creating the new SQL Server credential. If the operation succeeds, a new SQL Server credential with the given name is created. If a SQL Server credential with similar name already exists, then the operation will fail. + + string + + + AzureKeyVaultUrl + + Azure Key Vault absolute URL path to use when creating the SQL Server credential. The Azure key vault must be created before using to create a SQL Server credential. + + string + + + ServicePrincipalName + + Azure key vault client identifier given the principal user access to the Azure key vault set in AzureKeyVaultUrl. + + string + + + ServicePrincipalSecret + + Azure key vault principal access secret to the Azure key vault set in AzureKeyVaultUrl. + + SecureString + + + + + + + AzureKeyVaultUrl + + Azure Key Vault absolute URL path to use when creating the SQL Server credential. The Azure key vault must be created before using to create a SQL Server credential. + + + string + + string + + + + + + CredentialName + + The name to use when creating the new SQL Server credential. If the operation succeeds, a new SQL Server credential with the given name is created. If a SQL Server credential with similar name already exists, then the operation will fail. + + + string + + string + + + + + + Enable + + Enable is an optional value with a default value of false. If set to true, a SQL Server credential using Azure key vault is created when the configuration is used in Set-AzureVMSqlServerExtension. Otherwise, all SQL Server Azure key vault credential status reporting is disabled. Disabling this feature does not remove previously created SQL Server credential using Azure key vault. + + + bool + + bool + + + + + + ServicePrincipalName + + Azure key vault client identifier given the principal user access to the Azure key vault set in AzureKeyVaultUrl. + + + string + + string + + + + + + ServicePrincipalSecret + + Azure key vault principal access secret to the Azure key vault set in AzureKeyVaultUrl. + + + SecureString + + SecureString + + + + + + + + + + + + + + + + + + + + + + + + + KeyVaultCredentialSettings + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - -------------------------- EXAMPLE 2 -------------------------- - - - - - - C:\PS> Get-AzureVM -ServiceName "service" -Name "vmname" | Get-AzureVMSqlServerExtension - - ExtensionName : SqlIaaSAgent - Publisher : Microsoft.SqlServer.Management - Version : 1.0 - State : Enable - RoleName : vmname - AutoPatchingSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoPatchingSettings - AutoBackupSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoBackupSettings - - - Gets the settings of the SQL Server IaaS Agent on a particular virtual machine using piped input. - - - - - - - - - - - + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + +$akvs = New-AzureVMSqlServerKeyVaultCredentialConfig -Enable -CredentialName sqlcredname -AzureKeyVaultUrl "http://myvaultsample.vault.azure.net" -ServicePrincipalName "myvaultsample-principal-client-identifier" -ServicePrincipalSecret $secureSecret - - - -------------------------- EXAMPLE 3 -------------------------- - - - - - - C:\PS> Get-AzureVMSqlServerExtension -VM $vm -Version "1.0" - - ExtensionName : SqlIaaSAgent - Publisher : Microsoft.SqlServer.Management - Version : 1.0 - State : Enable - RoleName : vmname - AutoPatchingSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoPatchingSettings - AutoBackupSettings : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions.AutoBackupSettings - - - Gets the settings of the particular version of SQL Server IaaS Agent on a virtual machine. - - - - - - - - - - - - - - - - Set-AzureVMSqlServerExtension - - - - Remove-AzureVMSqlServerExtension - - - - +Enable : True +CredentialName : sqlcredname +AzureKeyVaultUrl : http://afSqlKVT.vault.azure.net +ServicePrincipalName : dsds-33dd-4d4c-9d2d-42428eeb1fd7 +ServicePrincipalSecret : LnT+7aXAdafy1VdSo3z8YnZ5pzGU1h3Y7prrwdlUDVc= + + Description + ----------- + Creates Azure key vault credential configuration object that can be used to enable and configure KeyVaultCredential using Set-AzureVMSqlServerExtension + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + $akvs = New-AzureVMSqlServerKeyVaultCredentialConfig + + Enable : False + CredentialName : + AzureKeyVaultUrl : + ServicePrincipalName : + ServicePrincipalSecret : + + Description + ----------- + Creates Azure key vault credential configuration object that can be used to disable KeyVaultCredential using Set-AzureVMSqlServerExtension + + + + + + + + + + + + + + + + + + + + @@ -35627,305 +35880,353 @@ RetentionPeriodInDays : 10 - - - - + + + + Set-AzureVMSqlServerExtension - - - Configure the Sql Server extension on a VM. - - - - - Set - AzureVMSqlServerExtension - - - - Configure the Sql Server extension on a VM. - - - - - Set-AzureVMSqlServerExtension - - VM - - The Virtual Machine to get the settings from. - - IPersistentVM - - - Version - - The specific version of the SQL Server extension that Get-AzureVMSqlServerExtension will get the settings from. - - string - - - AutoBackupSettings - - Automatic SQL Server backup settings - - AutoBackupSettings - - - AutoPatchingSetttings - - Automatic patching settings - - AutoPatchingSetttings - - - Confirm - - Prompts you for confirmation before executing the command. - - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - - - - - - - AutoBackupSettings - - Automatic SQL Server backup settings - - AutoBackupSettings - - AutoBackupSettings - - - - - - AutoPatchingSetttings - - Automatic patching settings - - AutoPatchingSetttings - - AutoPatchingSetttings - - - - - - Version - - The specific version of the SQL Server extension that Get-AzureVMSqlServerExtension will get the settings from. - - - string - - string - - - - - - VM - - The Virtual Machine to get the settings from. - - IPersistentVM - - IPersistentVM - - - - - - Confirm - - Prompts you for confirmation before executing the command. - - SwitchParameter - - SwitchParameter - - - - - - WhatIf - - Describes what would happen if you executed the command without actually executing the command. - - SwitchParameter - - SwitchParameter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + Configure the Sql Server extension on a VM. + + + + + Set + AzureVMSqlServerExtension + + + + Configure the Sql Server extension on a VM. + + + + + Set-AzureVMSqlServerExtension + + VM + + The Virtual Machine to get the settings from. + + IPersistentVM + + + Version + + The specific version of the SQL Server extension that Get-AzureVMSqlServerExtension will get the settings from. + + string + + + AutoBackupSettings + + Automatic SQL Server backup settings + + AutoBackupSettings + + + AutoPatchingSetttings + + Automatic patching settings + + AutoPatchingSetttings + + + KeyVaultCredentialSettings + + + + KeyVaultCredentialSettings + + + Confirm + + Prompts you for confirmation before executing the command. + + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + + + + + + + AutoBackupSettings + + Automatic SQL Server backup settings + + + AutoBackupSettings + + AutoBackupSettings + + + + + + AutoPatchingSetttings + + Automatic patching settings + + + AutoPatchingSetttings + + AutoPatchingSetttings + + + + + + KeyVaultCredentialSettings + + + + + KeyVaultCredentialSettings + + KeyVaultCredentialSettings + + + + + + Version + + The specific version of the SQL Server extension that Get-AzureVMSqlServerExtension will get the settings from. + + + string + + string + + + + + + VM + + The Virtual Machine to get the settings from. + + + IPersistentVM + + IPersistentVM + + + + + + Confirm + + Prompts you for confirmation before executing the command. + + SwitchParameter + + SwitchParameter + + + + + + WhatIf + + Describes what would happen if you executed the command without actually executing the command. + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - - + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + Get-AzureVM -ServiceName serviceName -Name vmName | Set-AzureVMSqlServerExtension -AutoPatchingSettings $aps | Update-AzureVM - + Description ----------- - Sets auto-patching settings on Azure VM. - - - - - - - - - - - + Sets auto-patching settings on Azure VM. + + + + + + + + + + + - - - -------------------------- EXAMPLE 2 -------------------------- - - - C:\PS> - - + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + Get-AzureVM -ServiceName serviceName -Name vmName | Set-AzureVMSqlServerExtension -AutoBackupSettings $abs | Update-AzureVM - + Description ----------- - Sets auto-backup settings on Azure VM. - - - - - - - - - - - + Sets auto-backup settings on Azure VM. + + + + + + + + + + + - - - -------------------------- EXAMPLE 3 -------------------------- - - - C:\PS> - - + + + -------------------------- EXAMPLE 3 -------------------------- + + + C:\PS> + + +Get-AzureVM -ServiceName $serviceName -Name $vmName | Set-AzureVMSqlServerExtension -KeyVaultCredentialSettings $akvs | Update-AzureVM + +Sets SQL Server credential Azure key vault settings + + Description + ----------- + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 4 -------------------------- + + + C:\PS> + + Get-AzureVM -ServiceName service -Name vmName| Set-AzureVMSqlServerExtension -Disable - + Description ----------- - Disables SQL Server VM extension on a given VM - - - - - - - - - - - + Disables SQL Server VM extension on a given VM + + + + + + + + + + + - - - -------------------------- EXAMPLE 4 -------------------------- - - - C:\PS> - - - Get-AzureVM -ServiceName service -Name vmName| Set-AzureVMSqlServerExtension -Uninstall - - + + + -------------------------- EXAMPLE 5 -------------------------- + + + C:\PS> + + +Get-AzureVM -ServiceName service -Name vmName| Set-AzureVMSqlServerExtension -UnInstall + Description ----------- - Uninstalls SQL Server VM extension on a given VM - - - - - - - - - - - - - - - - - - - + Uninstalls SQL Server VM extension on a given VM + + + + + + + + + + + + + + + + + + + - \ No newline at end of file From 24875b74713ae872f1e785890087a8d3b4bc4feb Mon Sep 17 00:00:00 2001 From: Microsoft Date: Mon, 17 Aug 2015 14:34:52 -0700 Subject: [PATCH 17/58] Removing Scenario test --- src/AzurePowershell.sln | 7 --- .../Commands.RemoteAppScenarioTest.csproj | 54 +++++++++++++++++-- 2 files changed, 51 insertions(+), 10 deletions(-) diff --git a/src/AzurePowershell.sln b/src/AzurePowershell.sln index 7ea6990b0d55..9d36990b7471 100644 --- a/src/AzurePowershell.sln +++ b/src/AzurePowershell.sln @@ -230,8 +230,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AzureBackup", "Res EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AzureBackup.Test", "ResourceManager\AzureBackup\Commands.AzureBackup.Test\Commands.AzureBackup.Test.csproj", "{678AE95D-2364-47D7-888C-3FFA6D412CC8}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RemoteAppScenarioTest", "ServiceManagement\RemoteApp\Commands.RemoteApp.ScenarioTest\Commands.RemoteAppScenarioTest.csproj", "{C2FA83A2-8668-49DD-A1A0-0359653571CA}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -574,10 +572,6 @@ Global {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Debug|Any CPU.Build.0 = Debug|Any CPU {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Release|Any CPU.ActiveCfg = Release|Any CPU {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Release|Any CPU.Build.0 = Release|Any CPU - {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C2FA83A2-8668-49DD-A1A0-0359653571CA}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -624,6 +618,5 @@ Global {F220C306-29A3-4511-8518-A58A55C60D07} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {678AE95D-2364-47D7-888C-3FFA6D412CC8} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {C2FA83A2-8668-49DD-A1A0-0359653571CA} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection EndGlobal diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj index 52e6e747cb35..ebaebece48c3 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj @@ -11,6 +11,8 @@ Commands.RemoteAppScenarioTests v4.5 512 + ..\..\..\ + true true @@ -30,21 +32,67 @@ 4 - + + False + ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll + + + False ..\..\..\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 + + False + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.3\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + + + False + ..\..\..\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 + + + False + ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + False ..\..\..\..\..\..\..\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll + + + + ..\..\..\packages\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll + + + ..\..\..\packages\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll + + From 795eee73886d83b51489f052969ba4d0d8b9425b Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Fri, 28 Aug 2015 22:59:52 -0700 Subject: [PATCH 18/58] Code Changes: ------------- 1) ARM cmdlets for SQLVM extension added ( followed DSC's ARM cmdlet pattern ) 2) supports configuring auto patching in ARM mode 3) supports configuring auto backup in ARM mode 4) Get sqlvm extension status in ARM mode 5) remove sqlvm extension in ARM mode Pending Open issues: ------------------ - MAML file generation & help documentation - adding new functional tests - follow up with Azure team to check why Extenstion statusus were always returning null in Get-* cmdlet Testing: ------ Environment: SQLVM created via new Azure portal using ARM Powershell script used: ----------------------- Switch-AzureMode -Name AzureResourceManager $subscriptionName = "__Subscription__" $vmName = "__vm_name__" $resourceGroupName = "__resourcegroupName__" Add-azureaccount select-azuresubscription -SubscriptionName $subscriptionName # Get Azure VM created using ARM $vm = get-azurevm -ResourceGroupName $resourceGroupName -Name $vmName ########### #Set auto patching ########### $aps = New-AzureVMSqlServerAutoPatchingConfig -Enable -DayOfWeek "EveryDay" -MaintenanceWindowStartingHour 20 -MaintenanceWindowDuration 120 -PatchCategory "Important" $vm | Set-AzureVMSqlServerExtension -AutoPatchingSettings $aps -ResourceGroupName $resourceGroupName -VMName $vmName -Version "1.2" -Verbose ########### #Set auto backup ########### $storageUrl = "https://__account__.blob.core.windows.net/" $storageAccountKey = "__KEY__" $storageAccountKeySecure = convertto-securestring $storageAccountKey -asplaintext -force $abs = New-AzureVMSqlServerAutoBackupConfig -Enable -RetentionPeriod 22 -StorageUri $storageUrl -StorageKey $storageAccountKeySecure $vm = get-azurevm -ResourceGroupName $resourceGroupName -Name $vmName $vm | Set-AzureVMSqlServerExtension -AutoBackupSettings $abs -ResourceGroupName $resourceGroupName -VMName $vmName -Version "1.2" -Verbose ########### #get extension status ########### Get-AzureVMSqlServerExtension -ResourceGroupName $resourceGroupName -VMName $vmName -Name $vmName ########### #remove extension ########### Remove-AzureVMSqlServerExtension -ResourceGroupName $resourceGroupName -VMName $vmName -Name $vmName Task# 5468533 - SQL IaaS Extension PowerShell Resource Management support --- .../Commands.Compute/Commands.Compute.csproj | 11 + .../Common/ConstantStringTypes.cs | 3 + .../AzureVMSqlServerAutoBackupSettings.cs | 52 +++++ .../AzureVMSqlServerAutoPatchingSettings.cs | 47 ++++ .../AzureVMSqlServerAutoTelemetrySettings.cs | 27 +++ .../AzureVMSqlServerPrivateSettings.cs | 37 ++++ .../AzureVMSqlServerPublicSettings.cs | 37 ++++ .../GetAzureVMSqlServerExtensionCommand.cs | 179 +++++++++++++++ .../NewAzureVMSqlServerAutoBackupConfig.cs | 208 ++++++++++++++++++ .../NewAzureVMSqlServerAutoPatchingConfig.cs | 71 ++++++ .../RemoveAzureVMSqlServerExtensionCommand.cs | 72 ++++++ .../SetAzureVMSqlServerExtensionCommand.cs | 158 +++++++++++++ ...VirtualMachineSqlServerExtensionContext.cs | 52 +++++ .../Properties/Resources.Designer.cs | 10 + .../Properties/Resources.resx | 5 + 15 files changed, 969 insertions(+) create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoPatchingSettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoTelemetrySettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPrivateSettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPublicSettings.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoBackupConfig.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoPatchingConfig.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/RemoveAzureVMSqlServerExtensionCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index ae27591edb67..7a08e4ff2035 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -223,6 +223,17 @@ + + + + + + + + + + + diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index a27790b1ebf7..7a6ac7398147 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -97,5 +97,8 @@ public static class ProfileNouns //DSC public const string VirtualMachineDscExtension = "AzureVMDscExtension"; public const string VirtualMachineDscConfiguration = "AzureVMDscConfiguration"; + + // Sql Server + public const string VirtualMachineSqlServerExtension = "AzureVMSqlServerExtension"; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs new file mode 100644 index 000000000000..cbda50e7daeb --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs @@ -0,0 +1,52 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Compute +{ + /// + /// Autobackup settings to configure managed backup on SQL VM + /// + public class AutoBackupSettings + { + /// + /// Defines if the Auto-backup feature is enabled or disabled + /// + public bool Enable { get; set; } + + /// + /// Defines if backups will be encrypted or not + /// + public bool EnableEncryption { get; set; } + + /// + /// Defines the number of days to keep the backups + /// + public int RetentionPeriod { get; set; } + + /// + /// storage url where databases will be backed up + /// + public string StorageUrl { get; set; } + + /// + /// Key of storage account used by managed backup + /// + public string StorageAccessKey { get; set; } + + /// + /// Password required for certification when encryption is enabled + /// + public string Password { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoPatchingSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoPatchingSettings.cs new file mode 100644 index 000000000000..f9dfd45d132d --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoPatchingSettings.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Compute +{ + /// + /// AutoPatching settings to configure auto-patching on SQL VM + /// + public class AutoPatchingSettings + { + /// + /// Enable / Disable auto patching + /// + public bool Enable { get; set; } + + /// + /// Day of the week + /// + public string DayOfWeek { get; set; } + + /// + /// Maintainance Windows Start hour ( 0 to 23 ) + /// + public int MaintenanceWindowStartingHour { get; set; } + + /// + /// Maintainance window duration in minutes + /// + public int MaintenanceWindowDuration { get; set; } + + /// + /// Patch category returned as string + /// + public string PatchCategory { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoTelemetrySettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoTelemetrySettings.cs new file mode 100644 index 000000000000..30d272831004 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoTelemetrySettings.cs @@ -0,0 +1,27 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Compute +{ + /// + /// AutoTelemetry settings to configure telemetry collection on SQL VM + /// + public class AutoTelemetrySettings + { + /// + /// The name of the region the VM is running in. + /// + public string Region { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPrivateSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPrivateSettings.cs new file mode 100644 index 000000000000..30a6ffb2c61a --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPrivateSettings.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Compute +{ + /// + /// SQL Server extension's private settings + /// + public class SqlServerPrivateSettings + { + /// + /// Azure blob store URL + /// + public string StorageUrl; + + /// + /// Storage account access key + /// + public string StorageAccessKey; + + /// + /// Password required for certification when encryption is enabled + /// + public string Password; + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPublicSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPublicSettings.cs new file mode 100644 index 000000000000..d10c6a466a34 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerPublicSettings.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Compute +{ + /// + /// SQL Server Extension's public settings + /// + public class SqlServerPublicSettings + { + /// + /// Auto patching settings + /// + public AutoPatchingSettings AutoPatchingSettings { get; set; } + + /// + /// Auto-backup settings + /// + public AutoBackupSettings AutoBackupSettings { get; set; } + + /// + /// Auto-telemetry settings + /// + public AutoTelemetrySettings AutoTelemetrySettings { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs new file mode 100644 index 000000000000..601ffd40f177 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs @@ -0,0 +1,179 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using System; +using System.Management.Automation; +using Newtonsoft.Json; +using System.Globalization; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Get, + ProfileNouns.VirtualMachineSqlServerExtension, + DefaultParameterSetName = GetSqlServerExtensionParamSetName), + OutputType( + typeof(VirtualMachineSqlServerExtensionContext))] + public class GetAzureVMSqlServerExtensionCommand : VirtualMachineExtensionBaseCmdlet + { + protected const string GetSqlServerExtensionParamSetName = "GetSqlServerExtension"; + + private const string SecretMaskedString = "*****"; + + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzureVMSqlServerExtension cmdlet sets this name to " + + "'Microsoft.SqlServer.Management.SqlIaaSAgent', which is the same value used by Get-AzureVMSqlServerExtension. Specify this parameter only if you changed " + + "the default name in the Set cmdlet or used a different resource name in an ARM template.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "To show the status.")] + [ValidateNotNullOrEmpty] + public SwitchParameter Status { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (String.IsNullOrEmpty(Name)) + { + Name = VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace + "." + VirtualMachineSqlServerExtensionContext.ExtensionPublishedName; + } + + if (Status) + { + var result = VirtualMachineExtensionClient.GetWithInstanceView(ResourceGroupName, VMName, Name); + var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); + + if ( + extension.Publisher.Equals(VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace, + StringComparison.InvariantCultureIgnoreCase) && + extension.ExtensionType.Equals(VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, + StringComparison.InvariantCultureIgnoreCase)) + { + WriteObject(GetSqlServerExtensionContext(extension)); + } + else + { + WriteObject(null); + } + } + else + { + var result = VirtualMachineExtensionClient.Get(ResourceGroupName, VMName, Name); + var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); + + if ( + extension.Publisher.Equals( + VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace, + StringComparison.InvariantCultureIgnoreCase) && + extension.ExtensionType.Equals( + VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, + StringComparison.InvariantCultureIgnoreCase)) + { + WriteObject(GetSqlServerExtensionContext(extension)); + } + else + { + WriteObject(null); + } + } + + } + + private VirtualMachineSqlServerExtensionContext GetSqlServerExtensionContext(PSVirtualMachineExtension extension) + { + SqlServerPublicSettings extensionPublicSettings = null; + try + { + extensionPublicSettings = string.IsNullOrEmpty(extension.PublicSettings) ? null + : JsonConvert.DeserializeObject(extension.PublicSettings); + + if (null != extensionPublicSettings) + { + if (null != extensionPublicSettings.AutoBackupSettings) + { + // Mask secrets so that they are not printed on console + extensionPublicSettings.AutoBackupSettings.Password = SecretMaskedString; + extensionPublicSettings.AutoBackupSettings.StorageAccessKey = SecretMaskedString; + } + } + } + catch (JsonException e) + { + ThrowTerminatingError( + new ErrorRecord( + new JsonException( + String.Format( + CultureInfo.CurrentUICulture, + Properties.Resources.AzureVMSqlServerWrongSettingsFormat, + extension.PublicSettings), + e), + string.Empty, + ErrorCategory.ParserError, + null)); + } + + string publicSettingsAsString = String.Empty; + if (null != extensionPublicSettings) + { + publicSettingsAsString = JsonConvert.SerializeObject(extensionPublicSettings); + } + + // #$ISSUE- extension.Statuses is always null, follow up with Azure team + var context = new VirtualMachineSqlServerExtensionContext + { + ResourceGroupName = extension.ResourceGroupName, + Name = extension.Name, + Location = extension.Location, + Etag = extension.Etag, + Publisher = extension.Publisher, + ExtensionType = extension.ExtensionType, + TypeHandlerVersion = extension.TypeHandlerVersion, + Id = extension.Id, + PublicSettings = JsonConvert.SerializeObject(extensionPublicSettings), + ProtectedSettings = extension.ProtectedSettings, + ProvisioningState = extension.ProvisioningState, + Statuses = extension.Statuses + }; + + + return context; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoBackupConfig.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoBackupConfig.cs new file mode 100644 index 000000000000..33cea12ad0a5 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoBackupConfig.cs @@ -0,0 +1,208 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Security; +using Microsoft.WindowsAzure.Commands.Common.Storage; +using Microsoft.WindowsAzure.Storage; +using Microsoft.Azure.Management.Storage; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +namespace Microsoft.Azure.Commands.Compute +{ + /// + /// Helper cmdlet to construct instance of AutoBackup settings class + /// + [Cmdlet( + VerbsCommon.New, + AzureVMSqlServerAutoBackupConfigNoun, + DefaultParameterSetName = StorageUriParamSetName), + OutputType( + typeof(AutoBackupSettings))] + public class NewAzureVMSqlServerAutoBackupConfigCommand : PSCmdlet + { + protected const string AzureVMSqlServerAutoBackupConfigNoun = "AzureVMSqlServerAutoBackupConfig"; + + protected const string StorageContextParamSetName = "StorageContextSqlServerAutoBackup"; + protected const string StorageUriParamSetName = "StorageUriSqlServerAutoBackup"; + + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = false, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Enable Automatic Backup.")] + [ValidateNotNullOrEmpty] + public SwitchParameter Enable { get; set; } + + [Parameter( + Mandatory = false, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Backup Retention period in days.")] + [ValidateNotNullOrEmpty] + public int RetentionPeriodInDays { get; set; } + + [Parameter( + Mandatory = false, + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Enable Backup Encryption.")] + [ValidateNotNullOrEmpty] + public SwitchParameter EnableEncryption { get; set; } + + [Parameter( + Mandatory = false, + Position = 4, + ValueFromPipelineByPropertyName = false, + HelpMessage = "Certificate password.")] + public SecureString CertificatePassword { get; set; } + + [Parameter( + ParameterSetName = StorageContextParamSetName, + Mandatory = false, + Position = 5, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The storage connection context")] + [ValidateNotNullOrEmpty] + public AzureStorageContext StorageContext + { + get; + set; + } + + [Parameter( + Mandatory = false, + Position = 4, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The storage uri")] + [ValidateNotNullOrEmpty] + public Uri StorageUri + { + get; + set; + } + + [Parameter( + Mandatory = false, + Position = 5, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The storage access key")] + [ValidateNotNullOrEmpty] + public SecureString StorageKey + { + get; + set; + } + + /// + /// Initialzies a new instance of the class. + /// + public NewAzureVMSqlServerAutoBackupConfigCommand() + { + } + + /// + /// Creates and returns object. + /// + protected override void ProcessRecord() + { + AutoBackupSettings autoBackupSettings = new AutoBackupSettings(); + + autoBackupSettings.Enable = (Enable.IsPresent) ? Enable.ToBool() : false; + autoBackupSettings.EnableEncryption = (EnableEncryption.IsPresent) ? EnableEncryption.ToBool() : false; + autoBackupSettings.RetentionPeriod = RetentionPeriodInDays; + + switch(ParameterSetName) + { + case StorageContextParamSetName: + autoBackupSettings.StorageUrl = StorageContext.BlobEndPoint; + autoBackupSettings.StorageAccessKey = this.GetStorageKey(); + break; + + case StorageUriParamSetName: + autoBackupSettings.StorageUrl = (StorageUri == null)? null: StorageUri.ToString(); + autoBackupSettings.StorageAccessKey = (StorageKey == null)? null: ConvertToUnsecureString(StorageKey); + break; + } + + // Check if certificate password was set + autoBackupSettings.Password = (CertificatePassword == null) ? null : ConvertToUnsecureString(CertificatePassword); + + WriteObject(autoBackupSettings); + } + + protected string GetStorageKey() + { + string storageKey = string.Empty; + string storageName = (this.StorageContext == null) ? null : this.StorageContext.StorageAccountName; + + if (!string.IsNullOrEmpty(storageName)) + { + var storageClient = new StorageManagementClient(); + + var storageAccount = storageClient.StorageAccounts.GetProperties(this.ResourceGroupName, storageName); + + if (storageAccount != null) + { + var keys = storageClient.StorageAccounts.ListKeys(this.ResourceGroupName, storageName); + + if (keys != null && keys.StorageAccountKeys != null) + { + storageKey = !string.IsNullOrEmpty(keys.StorageAccountKeys.Key1) ? + keys.StorageAccountKeys.Key1 : + keys.StorageAccountKeys.Key2; + } + } + } + + return storageKey; + } + + /// + /// convert secure string to regular string + /// $Issue - for ARM cmdlets, check if there is a similair helper class library like Microsoft.WindowsAzure.Commands.ServiceManagement.Helpers + /// + /// + /// + [SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)] + private static string ConvertToUnsecureString(SecureString securePassword) + { + if (securePassword == null) + { + throw new ArgumentNullException("securePassword"); + } + + IntPtr unmanagedString = IntPtr.Zero; + try + { + unmanagedString = Marshal.SecureStringToGlobalAllocUnicode(securePassword); + return Marshal.PtrToStringUni(unmanagedString); + } + finally + { + Marshal.ZeroFreeGlobalAllocUnicode(unmanagedString); + } + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoPatchingConfig.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoPatchingConfig.cs new file mode 100644 index 000000000000..c589a75436d5 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/NewAzureVMSqlServerAutoPatchingConfig.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + /// + /// Helper cmdlet to construct instance of AutoPatching settings class + /// + [Cmdlet( + VerbsCommon.New, + AzureVMSqlServerAutoPatchingConfigNoun), + OutputType( + typeof(AutoPatchingSettings))] + public class NewAzureVMSqlServerAutoPatchingConfigCommand : PSCmdlet + { + protected const string AzureVMSqlServerAutoPatchingConfigNoun = "AzureVMSqlServerAutoPatchingConfig"; + + [Parameter] + public SwitchParameter Enable { get; set; } + + [Parameter] + [ValidateSetAttribute(new string[] { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Everyday" })] + public string DayOfWeek { get; set; } + + [Parameter] + public int MaintenanceWindowStartingHour { get; set; } + + [Parameter] + public int MaintenanceWindowDuration { get; set; } + + [Parameter] + [ValidateSetAttribute(new string[] { "Important" })] + public string PatchCategory { get; set; } + + /// + /// Initialzies a new instance of the class. + /// + public NewAzureVMSqlServerAutoPatchingConfigCommand() + { + } + + /// + /// Creates and returns object. + /// + protected override void ProcessRecord() + { + AutoPatchingSettings autoPatchingSettings = new AutoPatchingSettings(); + + autoPatchingSettings.Enable = (Enable.IsPresent) ? Enable.ToBool() : false; + autoPatchingSettings.DayOfWeek = DayOfWeek; + autoPatchingSettings.MaintenanceWindowStartingHour = MaintenanceWindowStartingHour; + autoPatchingSettings.MaintenanceWindowDuration = MaintenanceWindowDuration; + autoPatchingSettings.PatchCategory = PatchCategory; + + WriteObject(autoPatchingSettings); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/RemoveAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/RemoveAzureVMSqlServerExtensionCommand.cs new file mode 100644 index 000000000000..cd6ba702c934 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/RemoveAzureVMSqlServerExtensionCommand.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Management.Compute; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Remove, + ProfileNouns.VirtualMachineSqlServerExtension)] + public class RemoveAzureVMSqlServerExtensionCommand : VirtualMachineExtensionBaseCmdlet + { + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The virtual machine name.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Alias("ExtensionName")] + [Parameter( + Mandatory = true, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the ARM resource that represents the extension. This is defaulted to 'Microsoft.SqlServer.Management.SqlIaaSAgent'.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ExecuteClientAction(() => + { + if (string.IsNullOrEmpty(Name)) + { + Name = VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace + "." + VirtualMachineSqlServerExtensionContext.ExtensionPublishedName; + } + + if (this.ShouldContinue(Properties.Resources.VirtualMachineExtensionRemovalConfirmation, Properties.Resources.VirtualMachineExtensionRemovalCaption)) + { + var op = this.VirtualMachineExtensionClient.Delete(this.ResourceGroupName, this.VMName, this.Name); + WriteObject(op); + } + }); + } + + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs new file mode 100644 index 000000000000..3570d6447f18 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs @@ -0,0 +1,158 @@ +// ---------------------------------------------------------------------------------- +// +// 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 AutoMapper; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Newtonsoft.Json; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet( + VerbsCommon.Set, + ProfileNouns.VirtualMachineSqlServerExtension)] + public class SetAzureSqlServerExtensionCommand : VirtualMachineExtensionBaseCmdlet + { + /// + /// The specific version of the SqlServer extension that Set-AzureVMSqlServerExtension will + /// apply the settings to. + /// + [Alias("HandlerVersion")] + [Parameter( + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The version of the SqlServer extension that Set-AzureVMSqlServerExtension will apply the settings to. " + + "Allowed format N.N")] + [ValidateNotNullOrEmpty] + public string Version { get; set; } + + [Parameter( + Mandatory = true, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Name of the virtual machine where Sql Server extension handler would be installed.")] + [ValidateNotNullOrEmpty] + public string VMName { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Position = 4, + HelpMessage = "Name of the ARM resource that represents the extension. This is defaulted to 'Microsoft.SqlServer.Management.SqlIaaSAgent'.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + Position = 5, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Automatic Patching configuration.")] + [ValidateNotNullOrEmpty] + public AutoPatchingSettings AutoPatchingSettings { get; set; } + + [Parameter( + Mandatory = false, + Position = 6, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Automatic Backup configuration.")] + [ValidateNotNullOrEmpty] + public AutoBackupSettings AutoBackupSettings { get; set; } + + [Parameter( + Position = 7, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Location of the resource.")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var parameters = new VirtualMachineExtension + { + Location = this.Location, + Name = Name ?? VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace + "." + VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, + Type = VirtualMachineExtensionType, + Publisher = VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace, + ExtensionType = VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, + TypeHandlerVersion = string.IsNullOrEmpty(this.Version) ? VirtualMachineSqlServerExtensionContext.ExtensionDefaultVersion : this.Version, + Settings = this.GetPublicConfiguration(), + ProtectedSettings = this.GetPrivateConfiguration(), + }; + + // Add retry logic due to CRP service restart known issue CRP bug: 3564713 + // Similair approach taken in DSC cmdlet as well + var count = 1; + ComputeLongRunningOperationResponse op = null; + while (count <= 2) + { + op = VirtualMachineExtensionClient.CreateOrUpdate( + ResourceGroupName, + VMName, + parameters); + + if (ComputeOperationStatus.Failed.Equals(op.Status) && op.Error != null && "InternalExecutionError".Equals(op.Error.Code)) + { + count++; + } + else + { + break; + } + } + var result = Mapper.Map(op); + WriteObject(result); + } + + /// + /// Returns the public configuration as string + /// + /// + private string GetPublicConfiguration() + { + return JsonConvert.SerializeObject( + new SqlServerPublicSettings + { + AutoPatchingSettings = this.AutoPatchingSettings, + AutoBackupSettings = this.AutoBackupSettings, + AutoTelemetrySettings = new AutoTelemetrySettings() { Region = this.Location} + }); + } + + /// + /// Returns private configuration as string + /// + /// + private string GetPrivateConfiguration() + { + return JsonConvert.SerializeObject( + new SqlServerPrivateSettings + { + StorageUrl = (this.AutoBackupSettings == null) ? string.Empty : this.AutoBackupSettings.StorageUrl, + StorageAccessKey = (this.AutoBackupSettings == null) ? string.Empty : this.AutoBackupSettings.StorageAccessKey, + Password = (this.AutoBackupSettings == null) ? string.Empty : this.AutoBackupSettings.Password + }); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs new file mode 100644 index 000000000000..c172036af9e1 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs @@ -0,0 +1,52 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Models; +using Newtonsoft.Json; +using System; +using System.Collections; + +namespace Microsoft.Azure.Commands.Compute +{ + /// + /// SQL VM Extension's context object used by Get-AzureVMSqlServerExtension + /// + public class VirtualMachineSqlServerExtensionContext : PSVirtualMachineExtension + { + /// + /// SQLVM Extension's publisher name + /// + public const string ExtensionPublishedNamespace = "Microsoft.SqlServer.Management"; + + /// + /// SQLVM Extension's name + /// + public const string ExtensionPublishedName = "SqlIaaSAgent"; + + /// + /// SQLVM Extension's default version + /// + public const string ExtensionDefaultVersion = "1.*"; + + /// + /// Auto-patching settings + /// + public AutoPatchingSettings AutoPatchingSettings; + + /// + /// Auto-backup settings + /// + public AutoBackupSettings AutoBackupSettings; + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index 6832f94dfc52..80554131d8da 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -214,6 +214,16 @@ public static string AzureVMDscWrongSettingsFormat { } } + /// + /// Looks up a localized string similar to Cannot deserialize settings string from Sql Server extension. Updating your Azure PowerShell SDK to the latest version may solve this problem. Settings string: + ///{0}. + /// + public static string AzureVMSqlServerWrongSettingsFormat { + get { + return ResourceManager.GetString("AzureVMSqlServerWrongSettingsFormat", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cannot specify both Windows and Linux configurations.. /// diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index 572d6e237889..cf294afffec0 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -284,4 +284,9 @@ The file needs to be a PowerShell script (.ps1 or .psm1). A data disk, {0}, is not currently assigned for this VM. Use Add-AzureVMDataDisk to add it. + + Cannot deserialize settings string from Sql Server extension. Updating your Azure PowerShell SDK to the latest version may solve this problem. Settings string: +{0} + {0} settings json string + \ No newline at end of file From 7cf0e17fe4d794e208f0fbb899ef41cfd7122d06 Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Mon, 31 Aug 2015 10:04:57 -0700 Subject: [PATCH 19/58] Merge branch 'dev' of https://github.com/Azure/azure-powershell into Azure-dev Conflicts: src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs --- ChangeLog.md | 11 +- .../ServiceManagementTests.ps1 | 9 +- .../Commands.Compute.Test.csproj | 10 + .../ScenarioTests/AddVhdTests.cs | 29 + .../ScenarioTests/AddVhdTests.ps1 | 107 + .../VirtualMachineExtensionTests.ps1 | 16 +- .../ScenarioTests/VirtualMachineTests.cs | 7 + .../ScenarioTests/VirtualMachineTests.ps1 | 162 + .../TestAddVhd.json | 1796 ++++++ .../TestVirtualMachineAccessExtension.json | 2385 +++++--- .../TestVMImageCmdletOutputFormat.json | 290 +- .../TestVirtualMachinePiping.json | 5333 +++++++++++++++++ .../Commands.Compute/Commands.Compute.csproj | 16 + .../Common/ConstantStringTypes.cs | 2 + .../VMAccess/SetAzureVMAccessExtension.cs | 6 +- .../VMAccessExtensionPrivateSettings.cs | 2 +- .../VMAccessExtensionPublicSettings.cs | 2 +- .../VirtualMachineAccessExtensionContext.cs | 2 +- .../Models/PSSyncOutputEvents.cs | 295 + .../Models/UploadParameters.cs | 46 + .../Models/VhdUploadContext.cs | 25 + .../Models/VhdUploaderModel.cs | 47 + .../Properties/Resources.Designer.cs | 234 + .../Properties/Resources.resx | 78 + .../StorageServices/AddAzureVhdCommand.cs | 175 + .../CloudPageBlobObjectFactory.cs | 60 + .../StorageCredentialsFactory.cs | 62 + .../Action/RestartAzureVMCommand.cs | 12 +- .../Action/SaveAzureVMImageCommand.cs | 19 +- .../Action/SetAzureVMCommand.cs | 17 +- .../Action/StartAzureVMCommand.cs | 12 +- .../Action/StopAzureVMCommand.cs | 12 +- .../Action/VirtualMachineActionBaseCmdlet.cs | 61 + .../Operation/RemoveAzureVMCommand.cs | 12 +- .../Operation/UpdateAzureVMCommand.cs | 41 +- .../Commands.DataFactories.Test.csproj | 6 +- .../ScenarioTests/Common.ps1 | 2 +- .../TestCreateDataFactoryGateway.json | 340 +- ...actoryGatewayWithDataFactoryParameter.json | 400 +- .../TestGetNonExistingDataFactoryGateway.json | 222 +- .../TestCreateDataFactory.json | 268 +- .../TestDataFactoryPiping.json | 406 +- ...teDataFactoryWithDataFactoryParameter.json | 164 +- .../TestGetNonExistingDataFactory.json | 86 +- .../TestHub.json | 386 +- .../TestHubPiping.json | 320 +- .../TestHubWithDataFactoryParameter.json | 384 +- .../TestLinkedService.json | 332 +- .../TestLinkedServicePiping.json | 432 +- ...LinkedServiceWithDataFactoryParameter.json | 330 +- .../TestTable.json | 1910 +++++- .../TestTablePiping.json | 476 +- .../TestTableWithDataFactoryParameter.json | 498 +- .../packages.config | 2 +- .../Commands.DataFactories.csproj | 4 +- .../Commands.DataFactories/packages.config | 2 +- .../PublishAzurePlatformExtension.cs | 26 +- .../SetAzurePlatformExtension.cs | 26 +- ...PublishAzurePlatformExtensionCmdletInfo.cs | 30 +- .../SetAzurePlatformExtensionCmdletInfo.cs | 60 +- .../FunctionalTests/PlatformExtensionTests.cs | 4 +- .../ServiceManagementCmdletTestHelper.cs | 4 +- .../DSC/GetAzureVMDscExtensionStatus.cs | 35 +- .../IaaSDeploymentManagementCmdletBase.cs | 7 +- .../IaaS/PersistentVMs/GetAzureVM.cs | 5 - .../ScenarioTests/MultiVip/MultiVipTests.ps1 | 20 +- .../ReservedIPs/ReservedIPTests.ps1 | 20 +- 67 files changed, 14629 insertions(+), 3971 deletions(-) create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.ps1 create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AddVhdTests/TestAddVhd.json create mode 100644 src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePiping.json create mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/PSSyncOutputEvents.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/UploadParameters.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/VhdUploadContext.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/Models/VhdUploaderModel.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/StorageServices/AddAzureVhdCommand.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/StorageServices/CloudPageBlobObjectFactory.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/StorageServices/StorageCredentialsFactory.cs create mode 100644 src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/VirtualMachineActionBaseCmdlet.cs diff --git a/ChangeLog.md b/ChangeLog.md index 5a5f10d64612..2112b01a525b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,15 @@ ## 2015.09.03 version 0.9.8 * Azure Compute (ARM) Cmdlets - * Add -Launch parameter for Get-AzureRemoteDesktopFile cmdlet + * Added -Launch parameter for Get-AzureRemoteDesktopFile cmdlet + * Added Id parameter for VM cmdlets to support piping scenario without ResourceGroupName parameter + * Added Set-AzureVMDataDisk cmdlet + * Added Add-AzureVhd cmdlet + * Changed the output format of Get image cmdlets as a table + * Fixed Set-AzureVMAccessExtension cmdlet +* Azure Compute (Service Management) cmdlets + * Changed the warning message to a non-terminating error message for ResourceNotFound in VM cmdlets + * Exposed ComputeImageConfig in Get-AzurePlatformVMImage cmdlet + * Fixed Publish-AzurePlatformExtension and Set-AzurePlatformExtension cmdlets * Azure Backup - added the following cmdlets * Backup-AzureRMBackupItem * Register-AzureRMBackupContainer diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 index 66676d0394b8..7974ea8c0f7f 100644 --- a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 @@ -18,8 +18,11 @@ Tests Create-AzureVM with valid information. #> function Test-GetAzureVM { - # Setup + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup $location = Get-DefaultLocation $imgName = Get-DefaultImage $location @@ -74,6 +77,10 @@ function Run-ServiceManagementCloudExceptionTests # Test Start/Stop-AzureVM for Multiple VMs function Run-StartAndStopMultipleVirtualMachinesTest { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup $location = Get-DefaultLocation; $imgName = Get-DefaultImage $location; 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 6af5f9948b38..075ec058b5f2 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -154,6 +154,7 @@ + @@ -204,6 +205,9 @@ ScenarioTests\Common.ps1 Always + + Always + Always @@ -239,6 +243,9 @@ Always + + Always + Always @@ -305,6 +312,9 @@ Always + + Always + Always diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.cs new file mode 100644 index 000000000000..ef6b78cf70a6 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests +{ + public class AddVhdTests + { + [Fact(Skip = "TODO: only works for live mode")] + [Trait(Category.RunType, Category.LiveOnly)] + public void TestAddVhd() + { + ComputeTestController.NewInstance.RunPsTest("Test-AddVhd"); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.ps1 new file mode 100644 index 000000000000..62eff9cec9c3 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/AddVhdTests.ps1 @@ -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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Add Vhd +#> +function Test-AddVhd +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = Get-ComputeVMLocation; + New-AzureResourceGroup -Name $rgname -Location $loc -Force; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + $storageKey = Get-AzureStorageAccountKey -ResourceGroupName $rgname -Name $stoname; + $vhdContainerName = 'vhds'; + + $path = (get-item -path ".\").FullName; + + $csvFile = "upload_VHD.csv"; + $csvPath = "..\..\..\..\..\ServiceManagement\Compute\Commands.ServiceManagement.Test\Resources\" + $csvFile; + $testData = Import-Csv $csvPath; + + foreach ($testItem in $testData) + { + $vhdLocalPath = 'e:\vhdstore\' + $testItem.vhdName; + $vhdName = GetFileNameWithoutExtension $testItem.vhdName; + $vhdDestUri = [System.String]::Format("{0}{1}/{2}{3}.vhd", $stoaccount.PrimaryEndpoints.Blob.AbsoluteUri, $vhdContainerName, $vhdName, $rgname); + Write-Output ("Start Uploading... : " + $testItem.vhdName); + + $vhdUploadContext = Add-AzureVhd -ResourceGroupName $rgname -Destination $vhdDestUri -LocalFilePath $vhdLocalPath -NumberOfUploaderThreads 1; + Start-Sleep -s 5; + + Write-Output ("Destination Uri :" + $vhdUploadContext.DestinationUri); + Write-Output ("Local File :" + $vhdUploadContext.LocalFilePath.FullName); + Write-Output ("Uploading Ended."); + + Assert-NotNull $vhdUploadContext; + Assert-AreEqual $vhdDestUri $vhdUploadContext.DestinationUri; + Assert-AreEqual $vhdLocalPath $vhdUploadContext.LocalFilePath.FullName; + + Write-Output ($vhdDestUri); + Write-Output ($storageKey.Key1); + + $destBlobHandle = GetBlobHandle $vhdDestUri $storageKey.Key1; + Assert-True {VerifyMD5hash $destBlobHandle $testItem.md5hash}; + } + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function GetFileNameWithoutExtension ($fileName) +{ + $fileName.Substring(0, $fileName.IndexOf('.')); +} + +function GetBlobHandle +{ + param([string] $blobString, [string] $storageKey) + + $blobPath = [Microsoft.WindowsAzure.Commands.Sync.Download.BlobUri] $null; + [Microsoft.WindowsAzure.Commands.Sync.Download.BlobUri]::TryParseUri($blobString, [REF]$blobPath); + $blob = [Microsoft.WindowsAzure.Commands.Sync.Download.BlobHandle]::new($blobPath, $storageKey); + return [Microsoft.WindowsAzure.Commands.Sync.Download.BlobHandle] $blob; +} + +function VerifyMD5hash +{ + param([System.Object] $blobHandle, [string] $md5hash) + + $blobMd5 = $blobHandle.Blob.Properties.ContentMD5; + Write-Output ("MD5 hash of the local file: " + $md5hash); + if ([System.String]::IsNullOrEmpty($blobMd5)) + { + Write-Output ("The blob does not have MD5 value!!!"); + return $false; + } + else + { + Write-Output ("MD5 hash of blob, "+ $blobHandle.Blob.Uri.ToString() + ", is "+ $blobMd5); + return $blobMd5.Equals($md5hash); + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 index 4ba5a65405fe..953c653604a6 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 @@ -726,13 +726,6 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $p.OSProfile.AdminPassword $password; Assert-AreEqual $p.OSProfile.WindowsConfiguration.ProvisionVMAgent $true; - # TODO : The test is outdated, need re-recording and re-enabling these fields for validation - # - # Assert-AreEqual $p.StorageProfile.ImageReference.Offer $imgRef.Offer; - # Assert-AreEqual $p.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; - # Assert-AreEqual $p.StorageProfile.ImageReference.Sku $imgRef.Skus; - # Assert-AreEqual $p.StorageProfile.ImageReference.Version $imgRef.Version; - # Virtual Machine # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. New-AzureVM -ResourceGroupName $rgname -Location $loc -VM $p; @@ -758,6 +751,7 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $ext.TypeHandlerVersion $extver; Assert-AreEqual $ext.UserName $user2; Assert-NotNull $ext.ProvisioningState; + Assert-True {$ext.PublicSettings.Contains("UserName")}; $ext = Get-AzureVMAccessExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname -Status; Assert-AreEqual $ext.ResourceGroupName $rgname; @@ -767,6 +761,7 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $ext.TypeHandlerVersion $extver; Assert-NotNull $ext.ProvisioningState; Assert-NotNull $ext.Statuses; + Assert-True {$ext.PublicSettings.Contains("UserName")}; # Get VM $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; @@ -774,13 +769,6 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; - # TODO : The test is outdated, need re-recording and re-enabling these fields for validation - # - # Assert-AreEqual $vm1.StorageProfile.ImageReference.Offer $imgRef.Offer; - # Assert-AreEqual $vm1.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; - # Assert-AreEqual $vm1.StorageProfile.ImageReference.Sku $imgRef.Skus; - # Assert-AreEqual $vm1.StorageProfile.ImageReference.Version $imgRef.Version; - Assert-AreEqual $vm1.OSProfile.AdminUsername $user; Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs index 66cd56174f04..7343e9362214 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs @@ -26,6 +26,13 @@ public void TestVirtualMachine() ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachine"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachinePiping() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachinePiping"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestLinuxVirtualMachine() diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index d3d5c5838d47..2cafef2684f3 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -203,6 +203,168 @@ function Test-VirtualMachine } } +<# +.SYNOPSIS +Test Virtual Machines +#> +function Test-VirtualMachinePiping +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = Get-ComputeVMLocation; + New-AzureResourceGroup -Name $rgname -Location $loc -Force; + + # VM Profile & Hardware + $vmsize = 'Standard_A4'; + $vmname = 'vm' + $rgname; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; + + # NRP + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzurePublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + # Adding the same Nic but not set it Primary + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId -Primary; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].Primary $true; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; + $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; + $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; + + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + + Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; + Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; + Assert-AreEqual $p.StorageProfile.OSDisk.VirtualHardDisk.Uri $osDiskVhdUri; + Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; + Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + $imgRef = Get-DefaultCRPImage -loc $loc; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + + Assert-AreEqual $p.OSProfile.AdminUsername $user; + Assert-AreEqual $p.OSProfile.ComputerName $computerName; + Assert-AreEqual $p.OSProfile.AdminPassword $password; + + Assert-AreEqual $p.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $p.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $p.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $p.StorageProfile.ImageReference.Version $imgRef.Version; + + # Virtual Machine + # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. + New-AzureVM -ResourceGroupName $rgname -Location $loc -VM $p; + + # Get VM + $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; + Assert-AreEqual $vm1.Name $vmname; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + Assert-AreEqual $vm1.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $vm1.StorageProfile.ImageReference.Version $imgRef.Version; + + Assert-AreEqual $vm1.OSProfile.AdminUsername $user; + Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; + Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; + + Get-AzureVM -ResourceGroupName $rgname | Start-AzureVM; + Get-AzureVM -ResourceGroupName $rgname | Restart-AzureVM; + Get-AzureVM -ResourceGroupName $rgname | Stop-AzureVM -Force -StayProvisioned; + + # Update VM + Get-AzureVM -ResourceGroupName $rgname -Name $vmname ` + | Add-AzureVMDataDisk -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty ` + | Update-AzureVM; + + $vm2 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; + + Assert-AreEqual $vm2.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm2.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + Assert-AreEqual $vm2.StorageProfile.DataDisks.Count 3; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Offer $imgRef.Offer; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Publisher $imgRef.PublisherName; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Sku $imgRef.Skus; + Assert-AreEqual $vm2.StorageProfile.ImageReference.Version $imgRef.Version; + + Assert-AreEqual $vm2.OSProfile.AdminUsername $user; + Assert-AreEqual $vm2.OSProfile.ComputerName $computerName; + Assert-AreEqual $vm2.HardwareProfile.VirtualMachineSize $vmsize; + Assert-NotNull $vm2.Location; + + Get-AzureVM -ResourceGroupName $rgname | Stop-AzureVM -Force; + Get-AzureVM -ResourceGroupName $rgname | Set-AzureVM -Generalize; + + $dest = Get-ComputeTestResourceName; + $templatePath = ".\template.txt"; + Get-AzureVM -ResourceGroupName $rgname | Save-AzureVMImage -DestinationContainerName $dest -VHDNamePrefix 'pslib' -Overwrite -Path $templatePath; + + $template = Get-Content $templatePath; + Assert-True { $template[1].Contains("$schema"); } + + # Remove All VMs + Get-AzureVM -ResourceGroupName $rgname | Remove-AzureVM -Force; + $vms = Get-AzureVM -ResourceGroupName $rgname; + Assert-AreEqual $vms $null; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Test Virtual Machine Size and Usage diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AddVhdTests/TestAddVhd.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AddVhdTests/TestAddVhd.json new file mode 100644 index 000000000000..5ed038ac511d --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AddVhdTests/TestAddVhd.json @@ -0,0 +1,1796 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\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-08-01\",\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\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-08-01\",\r\n \"2015-03-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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\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-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\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-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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\": \"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 \"resourceType\": \"automatedExportSettings\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\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\": \"checkTrafficManagerNameAvailability\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West US\",\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 \"Central US\",\r\n \"North Europe\"\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\": \"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\": \"checkNameAvailability\",\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\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"deploymenttemplates\",\r\n \"locations\": [],\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\": \"operations\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\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-05-01-preview\",\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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\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 \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North 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 \"Australia East\"\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 \"Australia East\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\"\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 \"Australia East\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\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 \"Australia Southeast\",\r\n \"Australia East\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "70706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "2d15846c-9f20-4eee-aec8-9143c45e416a" + ], + "x-ms-correlation-request-id": [ + "2d15846c-9f20-4eee-aec8-9143c45e416a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075246Z:2d15846c-9f20-4eee-aec8-9143c45e416a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps137?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "0b68a00e-077d-4af9-81ea-f13f59a6110d" + ], + "x-ms-correlation-request-id": [ + "0b68a00e-077d-4af9-81ea-f13f59a6110d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075246Z:0b68a00e-077d-4af9-81ea-f13f59a6110d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps137?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "14991" + ], + "x-ms-request-id": [ + "dfe69eaf-4176-481e-8cfb-2e5812550aae" + ], + "x-ms-correlation-request-id": [ + "dfe69eaf-4176-481e-8cfb-2e5812550aae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075426Z:dfe69eaf-4176-481e-8cfb-2e5812550aae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:25 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps137?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137\",\r\n \"name\": \"crptestps137\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "9935edfa-7041-4726-a3db-2b26b469cc12" + ], + "x-ms-correlation-request-id": [ + "9935edfa-7041-4726-a3db-2b26b469cc12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075246Z:9935edfa-7041-4726-a3db-2b26b469cc12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:46 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14992" + ], + "x-ms-request-id": [ + "618c69e0-e0f0-4c3f-8f11-f26d88a527c3" + ], + "x-ms-correlation-request-id": [ + "618c69e0-e0f0-4c3f-8f11-f26d88a527c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075246Z:618c69e0-e0f0-4c3f-8f11-f26d88a527c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps137/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "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:fb19dd03-bd06-4cbd-b305-aee67fd25969" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "79857b6c-c54e-44db-ba47-064582e830c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075247Z:79857b6c-c54e-44db-ba47-064582e830c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "031c22d1-ffe7-497d-bc65-fd5c2277385d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "7ad92917-957d-479a-93a9-c58038e360f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7ad92917-957d-479a-93a9-c58038e360f0?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "03403f86-e3ef-47fd-99a9-37bb1244af09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075248Z:03403f86-e3ef-47fd-99a9-37bb1244af09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:48 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7ad92917-957d-479a-93a9-c58038e360f0?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdhZDkyOTE3LTk1N2QtNDc5YS05M2E5LWM1ODAzOGUzNjBmMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "360020b1-7b02-44c3-a26c-fa79745d41ea" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "165e4d78-d1fc-4cba-b64d-6f1cf108b397" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7ad92917-957d-479a-93a9-c58038e360f0?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6b1c02b4-7c56-4b9f-aeb5-0563673d8511" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075249Z:6b1c02b4-7c56-4b9f-aeb5-0563673d8511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:52:49 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7ad92917-957d-479a-93a9-c58038e360f0?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdhZDkyOTE3LTk1N2QtNDc5YS05M2E5LWM1ODAzOGUzNjBmMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c13147e-7cf1-4ea8-b7b0-a0b8fabfea90" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "66" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1b2a13e-ba66-4559-8221-7112e88458cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "55915e43-5401-4d21-bee2-e2f57abec567" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075314Z:55915e43-5401-4d21-bee2-e2f57abec567" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "114beee0-ccce-495e-ae20-6ed08c9185ce" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137\",\r\n \"name\": \"stocrptestps137\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps137.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps137.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps137.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-28T07:52:48.3971687Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f63a179-175c-4e34-b0d1-7d180956437f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "989d1924-b846-4116-84cb-fc1b4cd38490" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075314Z:989d1924-b846-4116-84cb-fc1b4cd38490" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa454e03-66e3-475b-8bd8-2780dbe7abb3" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137\",\r\n \"name\": \"stocrptestps137\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps137.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps137.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps137.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-28T07:52:48.3971687Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de3d6440-b077-4811-a456-67bab59ce262" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "538fe192-0daf-4426-b56f-565c44a6118f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075314Z:538fe192-0daf-4426-b56f-565c44a6118f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d45392b4-5633-4b15-825e-9ef1dedd9a2b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e50f1d3-cd8a-4314-9dc5-fc20516f59aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "b8c931c6-a33f-4367-abb3-af27fb06ca55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075315Z:b8c931c6-a33f-4367-abb3-af27fb06ca55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7670ed03-dc18-45ea-9bf4-ad43ef2222e1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c02c7916-603e-451f-88f4-d0056955d677" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "024ac5b8-500a-4065-8e9e-e71e3f3a2190" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075316Z:024ac5b8-500a-4065-8e9e-e71e3f3a2190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35839fe4-fd4b-41be-9037-2ab8cbfdc193" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e82c1a07-89bc-46b2-9af5-23ab996efe28" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "9ce56e9f-5f3d-407d-a3b4-a9f1b59be7da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075316Z:9ce56e9f-5f3d-407d-a3b4-a9f1b59be7da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4273a552-9824-4682-a4aa-0bee247a1282" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d1480fe-94e4-4b3c-8c88-ae30e382f557" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "8d320cc8-f209-41c5-8f09-4cac78aab7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075325Z:8d320cc8-f209-41c5-8f09-4cac78aab7f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dd5d532-1446-492c-94c9-f4d2360276b6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "023c3d6a-0470-4de5-9f31-8770486a03a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "ee68b098-ad35-4386-ac2c-a4cf8c0f0ebe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075326Z:ee68b098-ad35-4386-ac2c-a4cf8c0f0ebe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15eb670f-4b65-4d41-9c30-ea453592518c" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9913e632-5285-40aa-a7cd-7139eb98909e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "1b0539f5-4482-4b0e-ab57-257cf7201138" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075335Z:1b0539f5-4482-4b0e-ab57-257cf7201138" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26a62646-2a7c-4fd6-9ffe-f5d9f1cee7db" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc4de68b-38cc-4151-b59c-daaf9e760fac" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "6c8f726f-d870-4e6e-9cd8-3cc1f18cbc2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075335Z:6c8f726f-d870-4e6e-9cd8-3cc1f18cbc2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0389571c-c30a-485c-8789-df9d6184e4b8" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd9255f4-ee1e-4332-87a4-b32c1cf7e568" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "654da4b1-7302-4b1a-9dd6-db5b7845316d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075346Z:654da4b1-7302-4b1a-9dd6-db5b7845316d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ca0660d-c9fc-47fe-aab4-7727dd9416c4" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c20cf435-8513-492e-a581-257fc7ba25d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "3bfc5575-af24-404f-80a5-a1d538957473" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075346Z:3bfc5575-af24-404f-80a5-a1d538957473" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca830da4-85c6-4663-9585-6fbf94263e9b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad542d68-8434-4425-8657-959b493c8ccc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "2f3e1cfa-5b7f-46ba-b964-a8866b608fa2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075356Z:2f3e1cfa-5b7f-46ba-b964-a8866b608fa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09d5ca05-a4f5-48e7-8284-41a828a3314c" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7e74cbcb-0d7a-4941-85f3-c437f334c3d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "81e68c31-b1d5-41bf-bb0f-940453560bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075356Z:81e68c31-b1d5-41bf-bb0f-940453560bc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:53:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ead0c6b4-f898-4002-ab23-cc0b0fe00b02" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04c4a3b2-fe3c-4ac4-8823-eda748073872" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "1f84bc18-8d05-4e9d-954b-d60adf935218" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075412Z:1f84bc18-8d05-4e9d-954b-d60adf935218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps137/providers/Microsoft.Storage/storageAccounts/stocrptestps137/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b2NycHRlc3RwczEzNy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4874035e-46d1-4503-af7c-9a0c6f6dc0a9" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"DG//e8Wcy1GsoHQfIaYq6BT0hldutzkABEl0VRy5M/kvtfsD9PYd2cDscO7zMrtEhzhw8EntUEw+E+XlFCKdhQ==\",\r\n \"key2\": \"r9AojLhjPyWPeZf6kz0LsDmAOtLc/p9B2rrVdD2iob5YIFKH6KrUeSs4qVj28WIyfkwWpH5m2iL45fRv9LCPrA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55be3df7-f7e8-47ff-9fef-c512de56fd99" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "e30c98cf-fec0-47a5-8001-48a29719d901" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075412Z:e30c98cf-fec0-47a5-8001-48a29719d901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps137?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEzNz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "1185" + ], + "x-ms-request-id": [ + "ed6ec4f5-cf64-4609-9ce5-4bcac3116c2f" + ], + "x-ms-correlation-request-id": [ + "ed6ec4f5-cf64-4609-9ce5-4bcac3116c2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075426Z:ed6ec4f5-cf64-4609-9ce5-4bcac3116c2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "e934a0c2-9243-4024-b42d-f98eab47f201" + ], + "x-ms-correlation-request-id": [ + "e934a0c2-9243-4024-b42d-f98eab47f201" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075426Z:e934a0c2-9243-4024-b42d-f98eab47f201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "a620541b-3c77-4bd9-aebb-b5def894c0d8" + ], + "x-ms-correlation-request-id": [ + "a620541b-3c77-4bd9-aebb-b5def894c0d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075441Z:a620541b-3c77-4bd9-aebb-b5def894c0d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "51ee7259-1a96-4f6f-9fd7-b5e6aec90976" + ], + "x-ms-correlation-request-id": [ + "51ee7259-1a96-4f6f-9fd7-b5e6aec90976" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075456Z:51ee7259-1a96-4f6f-9fd7-b5e6aec90976" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:54:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "b375d6b8-8d5e-484f-b213-844394a5dc39" + ], + "x-ms-correlation-request-id": [ + "b375d6b8-8d5e-484f-b213-844394a5dc39" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075511Z:b375d6b8-8d5e-484f-b213-844394a5dc39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:55:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "7e81bfb2-4ca0-4ac7-a6b9-609cfc9b41f6" + ], + "x-ms-correlation-request-id": [ + "7e81bfb2-4ca0-4ac7-a6b9-609cfc9b41f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075526Z:7e81bfb2-4ca0-4ac7-a6b9-609cfc9b41f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:55:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "3822bc4b-eb62-40d0-b49a-1072f6bbb1d2" + ], + "x-ms-correlation-request-id": [ + "3822bc4b-eb62-40d0-b49a-1072f6bbb1d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075541Z:3822bc4b-eb62-40d0-b49a-1072f6bbb1d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:55:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "14984" + ], + "x-ms-request-id": [ + "e9462c8a-f559-4eb3-b079-853007c710b2" + ], + "x-ms-correlation-request-id": [ + "e9462c8a-f559-4eb3-b079-853007c710b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075556Z:e9462c8a-f559-4eb3-b079-853007c710b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:55:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TXpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": [ + "14983" + ], + "x-ms-request-id": [ + "f29f6653-e6f5-41db-aeb8-874edce97944" + ], + "x-ms-correlation-request-id": [ + "f29f6653-e6f5-41db-aeb8-874edce97944" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T075611Z:f29f6653-e6f5-41db-aeb8-874edce97944" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 07:56:11 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-AddVhd": [ + "crptestps137" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json index 8c830c0b3e93..f869c7479f8c 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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\": \"operations\",\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/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\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 \"West 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 \"Japan East\",\r\n \"Japan West\"\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-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\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-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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\": \"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 \"resourceType\": \"automatedExportSettings\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\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\": \"checkTrafficManagerNameAvailability\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West US\",\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 \"Central US\",\r\n \"North Europe\"\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\": \"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\": \"checkNameAvailability\",\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\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"deploymenttemplates\",\r\n \"locations\": [],\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\": \"operations\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\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-05-01-preview\",\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-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\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 \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North 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 \"Australia East\"\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 \"Australia East\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\"\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 \"Australia East\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\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 \"Australia Southeast\",\r\n \"Australia East\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\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-08-01\",\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\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-08-01\",\r\n \"2015-03-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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\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-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\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-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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\": \"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 \"resourceType\": \"automatedExportSettings\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\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\": \"checkTrafficManagerNameAvailability\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West US\",\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 \"Central US\",\r\n \"North Europe\"\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\": \"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\": \"checkNameAvailability\",\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\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"deploymenttemplates\",\r\n \"locations\": [],\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\": \"operations\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\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-05-01-preview\",\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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\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 \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North 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 \"Australia East\"\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 \"Australia East\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\"\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 \"Australia East\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\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 \"Australia Southeast\",\r\n \"Australia East\",\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}", "ResponseHeaders": { "Content-Length": [ - "68651" + "70706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14999" ], "x-ms-request-id": [ - "c6ff53ae-145e-4c9b-97ad-5f1f76e89f7b" + "694356f4-a337-4f90-8e1c-63d7e2a006eb" ], "x-ms-correlation-request-id": [ - "c6ff53ae-145e-4c9b-97ad-5f1f76e89f7b" + "694356f4-a337-4f90-8e1c-63d7e2a006eb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053604Z:c6ff53ae-145e-4c9b-97ad-5f1f76e89f7b" + "CENTRALUS:20150828T005801Z:694356f4-a337-4f90-8e1c-63d7e2a006eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:04 GMT" + "Fri, 28 Aug 2015 00:58:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps9686?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -76,16 +76,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14998" ], "x-ms-request-id": [ - "914404f5-f21d-483e-a47b-a607fc5da54f" + "3edbbacf-25d7-4f1a-8497-170ce7ac9bcb" ], "x-ms-correlation-request-id": [ - "914404f5-f21d-483e-a47b-a607fc5da54f" + "3edbbacf-25d7-4f1a-8497-170ce7ac9bcb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053605Z:914404f5-f21d-483e-a47b-a607fc5da54f" + "CENTRALUS:20150828T005801Z:3edbbacf-25d7-4f1a-8497-170ce7ac9bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:05 GMT" + "Fri, 28 Aug 2015 00:58:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps9686?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -121,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14994" ], "x-ms-request-id": [ - "6a38a2c8-de34-4c68-a41a-32acaf0a963b" + "937b08d8-aa83-4bfe-a172-c96becb61307" ], "x-ms-correlation-request-id": [ - "6a38a2c8-de34-4c68-a41a-32acaf0a963b" + "937b08d8-aa83-4bfe-a172-c96becb61307" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055729Z:6a38a2c8-de34-4c68-a41a-32acaf0a963b" + "WESTUS:20150828T012400Z:937b08d8-aa83-4bfe-a172-c96becb61307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -139,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:57:28 GMT" + "Fri, 28 Aug 2015 01:24:00 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps9686?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -160,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224\",\r\n \"name\": \"crptestps1224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686\",\r\n \"name\": \"crptestps9686\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "a75a21fa-bd2c-4f89-9a28-e845c32e32a3" + "86e1e6fc-0562-4943-8f14-758dc3f40025" ], "x-ms-correlation-request-id": [ - "a75a21fa-bd2c-4f89-9a28-e845c32e32a3" + "86e1e6fc-0562-4943-8f14-758dc3f40025" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053605Z:a75a21fa-bd2c-4f89-9a28-e845c32e32a3" + "CENTRALUS:20150828T005802Z:86e1e6fc-0562-4943-8f14-758dc3f40025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:05 GMT" + "Fri, 28 Aug 2015 00:58:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -223,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14997" ], "x-ms-request-id": [ - "c79a2c70-552f-4cff-9491-d92b9286198e" + "66e9e045-88fd-442d-9d38-9df410ef6a66" ], "x-ms-correlation-request-id": [ - "c79a2c70-552f-4cff-9491-d92b9286198e" + "66e9e045-88fd-442d-9d38-9df410ef6a66" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053605Z:c79a2c70-552f-4cff-9491-d92b9286198e" + "CENTRALUS:20150828T005802Z:66e9e045-88fd-442d-9d38-9df410ef6a66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:05 GMT" + "Fri, 28 Aug 2015 00:58:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps9686/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "brazilus:beda92fb-76d5-4dfc-938e-8bcafdb15f75" + "centralus:5359971b-804d-453d-bd94-311bba00ecb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14999" ], "x-ms-correlation-request-id": [ - "5b576cb3-0956-44b6-8a2b-05dee865e94f" + "d965b1a9-f432-4d86-bc55-4f4414197f62" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053606Z:5b576cb3-0956-44b6-8a2b-05dee865e94f" + "CENTRALUS:20150828T005802Z:d965b1a9-f432-4d86-bc55-4f4414197f62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +292,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:05 GMT" + "Fri, 28 Aug 2015 00:58:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTY4Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,7 +307,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1224' under resource group 'crptestps1224' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps9686' under resource group 'crptestps9686' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -325,13 +325,13 @@ "gateway" ], "x-ms-request-id": [ - "19ff9fc6-5127-41bf-9fce-874b83f538c3" + "cceee045-4ec9-4d16-839d-17a9a9b66795" ], "x-ms-correlation-request-id": [ - "19ff9fc6-5127-41bf-9fce-874b83f538c3" + "cceee045-4ec9-4d16-839d-17a9a9b66795" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053606Z:19ff9fc6-5127-41bf-9fce-874b83f538c3" + "CENTRALUS:20150828T005804Z:cceee045-4ec9-4d16-839d-17a9a9b66795" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,14 +340,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:06 GMT" + "Fri, 28 Aug 2015 00:58:03 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTY4Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -355,7 +355,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02047286-5193-4572-89eb-bf592dbadcac\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\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\": \"vnetcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686\",\r\n \"etag\": \"W/\\\"8b0b2002-c7b1-4032-8e79-15fdc4282778\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"785f7c2c-fc2a-43f0-99db-660fa9b412ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\",\r\n \"etag\": \"W/\\\"8b0b2002-c7b1-4032-8e79-15fdc4282778\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -370,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "c06e1c9f-36fa-42e3-8d49-1032c58656e6" + "a7c6dcf7-9910-4baa-80e9-893a4cca8858" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "ETag": [ - "W/\"00a4967f-26ad-4136-a814-8378b20c09b4\"" + "W/\"8b0b2002-c7b1-4032-8e79-15fdc4282778\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -389,20 +389,20 @@ "14997" ], "x-ms-correlation-request-id": [ - "fb7d1f36-31fa-4a46-9806-170b176becb7" + "11f9be06-c1dd-45d0-bbb1-b4589ff09f0d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053608Z:fb7d1f36-31fa-4a46-9806-170b176becb7" + "CENTRALUS:20150828T005806Z:11f9be06-c1dd-45d0-bbb1-b4589ff09f0d" ], "Date": [ - "Thu, 13 Aug 2015 05:36:08 GMT" + "Fri, 28 Aug 2015 00:58:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTY4Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -410,7 +410,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02047286-5193-4572-89eb-bf592dbadcac\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\",\r\n \"etag\": \"W/\\\"00a4967f-26ad-4136-a814-8378b20c09b4\\\"\",\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\": \"vnetcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686\",\r\n \"etag\": \"W/\\\"8b0b2002-c7b1-4032-8e79-15fdc4282778\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"785f7c2c-fc2a-43f0-99db-660fa9b412ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\",\r\n \"etag\": \"W/\\\"8b0b2002-c7b1-4032-8e79-15fdc4282778\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "1028" @@ -425,7 +425,7 @@ "no-cache" ], "x-ms-request-id": [ - "d11fc08d-a413-4451-85ea-9f7d57a10668" + "6afe9572-f248-48fb-af24-08e60b144d42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -434,7 +434,7 @@ "no-cache" ], "ETag": [ - "W/\"00a4967f-26ad-4136-a814-8378b20c09b4\"" + "W/\"8b0b2002-c7b1-4032-8e79-15fdc4282778\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -444,22 +444,22 @@ "14996" ], "x-ms-correlation-request-id": [ - "cdb799c2-3e3f-45e5-afc3-7e64a7cdce06" + "6bc9208f-f0c8-4516-b1cd-50f54820dfc5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053608Z:cdb799c2-3e3f-45e5-afc3-7e64a7cdce06" + "CENTRALUS:20150828T005806Z:6bc9208f-f0c8-4516-b1cd-50f54820dfc5" ], "Date": [ - "Thu, 13 Aug 2015 05:36:08 GMT" + "Fri, 28 Aug 2015 00:58:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTIyND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualnetworks/vnetcrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzOTY4Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "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 \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\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\": \"subnetcrptestps1224\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps1224\",\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 \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\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\": \"subnetcrptestps9686\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps9686\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -471,7 +471,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224\",\r\n \"etag\": \"W/\\\"2f8d0927-0d37-487b-b200-7afa7a6dac11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"02047286-5193-4572-89eb-bf592dbadcac\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\",\r\n \"etag\": \"W/\\\"2f8d0927-0d37-487b-b200-7afa7a6dac11\\\"\",\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\": \"vnetcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686\",\r\n \"etag\": \"W/\\\"26094dfe-016b-4b5a-8d9b-89c8720aadc7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"785f7c2c-fc2a-43f0-99db-660fa9b412ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\",\r\n \"etag\": \"W/\\\"26094dfe-016b-4b5a-8d9b-89c8720aadc7\\\"\",\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}", "ResponseHeaders": { "Content-Length": [ "1026" @@ -489,10 +489,10 @@ "10" ], "x-ms-request-id": [ - "18e70a11-f40d-4c79-afbe-110e8d2b16cf" + "e5871bd7-d49f-435c-9034-8e9cc2da9bcd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/18e70a11-f40d-4c79-afbe-110e8d2b16cf?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e5871bd7-d49f-435c-9034-8e9cc2da9bcd?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,20 +508,20 @@ "1199" ], "x-ms-correlation-request-id": [ - "1a0bd4f7-b6e0-40dc-a196-58b273277272" + "82a237bc-a680-4694-9e1f-762541b2f89d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053608Z:1a0bd4f7-b6e0-40dc-a196-58b273277272" + "CENTRALUS:20150828T005806Z:82a237bc-a680-4694-9e1f-762541b2f89d" ], "Date": [ - "Thu, 13 Aug 2015 05:36:08 GMT" + "Fri, 28 Aug 2015 00:58:05 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/18e70a11-f40d-4c79-afbe-110e8d2b16cf?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMThlNzBhMTEtZjQwZC00Yzc5LWFmYmUtMTEwZThkMmIxNmNmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/e5871bd7-d49f-435c-9034-8e9cc2da9bcd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU4NzFiZDctZDQ5Zi00MzVjLTkwMzQtOGU5Y2MyZGE5YmNkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -547,7 +547,7 @@ "no-cache" ], "x-ms-request-id": [ - "ac4e1f5b-0ec9-4eb4-be32-1f870f4f8107" + "08c60d92-86e9-4e01-b015-be5e5fc8daaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -563,20 +563,20 @@ "14998" ], "x-ms-correlation-request-id": [ - "2d9dbc6f-9701-4ac2-afb1-769c33c5bc40" + "aefe3467-0544-440f-9bac-bd9a2a2df321" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053608Z:2d9dbc6f-9701-4ac2-afb1-769c33c5bc40" + "CENTRALUS:20150828T005806Z:aefe3467-0544-440f-9bac-bd9a2a2df321" ], "Date": [ - "Thu, 13 Aug 2015 05:36:08 GMT" + "Fri, 28 Aug 2015 00:58:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTY4Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1224' under resource group 'crptestps1224' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps9686' under resource group 'crptestps9686' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -602,13 +602,13 @@ "gateway" ], "x-ms-request-id": [ - "a872e17f-ce9b-4ceb-b23c-2059854df2ce" + "c9deb688-3c55-4e90-8e7d-e70f840bb662" ], "x-ms-correlation-request-id": [ - "a872e17f-ce9b-4ceb-b23c-2059854df2ce" + "c9deb688-3c55-4e90-8e7d-e70f840bb662" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053609Z:a872e17f-ce9b-4ceb-b23c-2059854df2ce" + "CENTRALUS:20150828T005806Z:c9deb688-3c55-4e90-8e7d-e70f840bb662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,14 +617,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:08 GMT" + "Fri, 28 Aug 2015 00:58:06 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTY4Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\",\r\n \"etag\": \"W/\\\"760f2650-10b4-4a30-9e70-6ce66790b507\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ce8f75c-b308-4c10-a869-c151b8915bd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\",\r\n \"fqdn\": \"pubipcrptestps1224.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\",\r\n \"etag\": \"W/\\\"dcc1c474-f59a-4376-8577-ca3e8d1d2440\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e61c0ae3-5c3f-48bc-bcf8-f9dfee8e3fd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9686\",\r\n \"fqdn\": \"pubipcrptestps9686.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -647,7 +647,7 @@ "no-cache" ], "x-ms-request-id": [ - "cb583110-8b52-47c1-9f95-8dbd4c06095e" + "89f19455-5bd5-4758-be7e-8cabfa473d54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -656,7 +656,7 @@ "no-cache" ], "ETag": [ - "W/\"760f2650-10b4-4a30-9e70-6ce66790b507\"" + "W/\"dcc1c474-f59a-4376-8577-ca3e8d1d2440\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -666,20 +666,20 @@ "14993" ], "x-ms-correlation-request-id": [ - "7157b59e-0c88-4062-b356-eba5b7521904" + "e5d6c2f8-85d2-4b60-8e9b-ac9cdb5bd531" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053611Z:7157b59e-0c88-4062-b356-eba5b7521904" + "CENTRALUS:20150828T005808Z:e5d6c2f8-85d2-4b60-8e9b-ac9cdb5bd531" ], "Date": [ - "Thu, 13 Aug 2015 05:36:10 GMT" + "Fri, 28 Aug 2015 00:58:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTY4Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,7 +687,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\",\r\n \"etag\": \"W/\\\"760f2650-10b4-4a30-9e70-6ce66790b507\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ce8f75c-b308-4c10-a869-c151b8915bd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\",\r\n \"fqdn\": \"pubipcrptestps1224.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\",\r\n \"etag\": \"W/\\\"dcc1c474-f59a-4376-8577-ca3e8d1d2440\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e61c0ae3-5c3f-48bc-bcf8-f9dfee8e3fd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9686\",\r\n \"fqdn\": \"pubipcrptestps9686.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "616" @@ -702,7 +702,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9400640-d361-4e1e-bb58-1c2c06577a03" + "891c5d4f-a38f-41b8-8977-4ab51e61323f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,7 +711,7 @@ "no-cache" ], "ETag": [ - "W/\"760f2650-10b4-4a30-9e70-6ce66790b507\"" + "W/\"dcc1c474-f59a-4376-8577-ca3e8d1d2440\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -721,22 +721,22 @@ "14992" ], "x-ms-correlation-request-id": [ - "f61d74a8-03e5-46d3-b783-7abee2ce42c4" + "aa1675c2-8e4d-4afa-a1e9-2c55f9ac6ddd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053611Z:f61d74a8-03e5-46d3-b783-7abee2ce42c4" + "CENTRALUS:20150828T005808Z:aa1675c2-8e4d-4afa-a1e9-2c55f9ac6ddd" ], "Date": [ - "Thu, 13 Aug 2015 05:36:11 GMT" + "Fri, 28 Aug 2015 00:58:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTIyNC8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzOTY4Ni8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1224\",\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\": \"pubipcrptestps9686\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps9686\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -748,7 +748,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\",\r\n \"etag\": \"W/\\\"017c2ae2-f62c-41e8-8a49-dacbefce9662\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2ce8f75c-b308-4c10-a869-c151b8915bd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1224\",\r\n \"fqdn\": \"pubipcrptestps1224.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\",\r\n \"etag\": \"W/\\\"1c1f571f-65ca-4ffb-9648-d486b8d1bb21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e61c0ae3-5c3f-48bc-bcf8-f9dfee8e3fd4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps9686\",\r\n \"fqdn\": \"pubipcrptestps9686.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -766,10 +766,10 @@ "10" ], "x-ms-request-id": [ - "c54f2292-5ca7-4a3e-8bab-526db8c2a50e" + "4e69c9f8-e021-4334-a220-52be9dc07792" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c54f2292-5ca7-4a3e-8bab-526db8c2a50e?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4e69c9f8-e021-4334-a220-52be9dc07792?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -785,20 +785,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "023f8453-9840-4df8-9309-1d396d755be9" + "f5831455-1035-49ca-87b7-d8501aed4a15" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053610Z:023f8453-9840-4df8-9309-1d396d755be9" + "CENTRALUS:20150828T005808Z:f5831455-1035-49ca-87b7-d8501aed4a15" ], "Date": [ - "Thu, 13 Aug 2015 05:36:10 GMT" + "Fri, 28 Aug 2015 00:58:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/c54f2292-5ca7-4a3e-8bab-526db8c2a50e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzU0ZjIyOTItNWNhNy00YTNlLThiYWItNTI2ZGI4YzJhNTBlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/4e69c9f8-e021-4334-a220-52be9dc07792?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGU2OWM5ZjgtZTAyMS00MzM0LWEyMjAtNTJiZTlkYzA3NzkyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -824,7 +824,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a7c7cb0-d1be-4537-b1e3-c45feba92fe2" + "885f3db2-a5fe-42dc-a614-08ffd417e31f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,20 +840,20 @@ "14994" ], "x-ms-correlation-request-id": [ - "fd4aa804-bac5-40f8-8a9e-e55d88716e8d" + "3e4d4756-842e-4531-aaf4-2fe3eff09c9e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053610Z:fd4aa804-bac5-40f8-8a9e-e55d88716e8d" + "CENTRALUS:20150828T005808Z:3e4d4756-842e-4531-aaf4-2fe3eff09c9e" ], "Date": [ - "Thu, 13 Aug 2015 05:36:10 GMT" + "Fri, 28 Aug 2015 00:58:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,7 +861,7 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps1224' under resource group 'crptestps1224' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps9686' under resource group 'crptestps9686' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -879,13 +879,13 @@ "gateway" ], "x-ms-request-id": [ - "abc5be52-2519-47ae-9255-604b4cb9d761" + "e1673817-55d2-405c-953c-411f907deb15" ], "x-ms-correlation-request-id": [ - "abc5be52-2519-47ae-9255-604b4cb9d761" + "e1673817-55d2-405c-953c-411f907deb15" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053611Z:abc5be52-2519-47ae-9255-604b4cb9d761" + "CENTRALUS:20150828T005809Z:e1673817-55d2-405c-953c-411f907deb15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,14 +894,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:36:11 GMT" + "Fri, 28 Aug 2015 00:58:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -909,10 +909,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94c0c32c-c10d-4c7c-a36a-f0f841e6e652\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686\",\r\n \"etag\": \"W/\\\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f43eb779-25ac-4387-bd21-3ef5d644c33b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1405" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,7 +924,7 @@ "no-cache" ], "x-ms-request-id": [ - "dfdeb3c8-751e-4de5-a209-0d997a2ae2d5" + "1edb8e8f-3c5f-484c-a86d-16e14059d2ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,7 +933,7 @@ "no-cache" ], "ETag": [ - "W/\"83af58c5-cae6-4674-97fd-09c7a79eb141\"" + "W/\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -943,20 +943,20 @@ "14989" ], "x-ms-correlation-request-id": [ - "016c5b6a-15b0-484b-b7b3-7c905ff1c0d4" + "a27de6bd-c44a-4842-8b00-7b13d2c53a96" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053612Z:016c5b6a-15b0-484b-b7b3-7c905ff1c0d4" + "CENTRALUS:20150828T005810Z:a27de6bd-c44a-4842-8b00-7b13d2c53a96" ], "Date": [ - "Thu, 13 Aug 2015 05:36:12 GMT" + "Fri, 28 Aug 2015 00:58:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -964,10 +964,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94c0c32c-c10d-4c7c-a36a-f0f841e6e652\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686\",\r\n \"etag\": \"W/\\\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f43eb779-25ac-4387-bd21-3ef5d644c33b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1405" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -979,7 +979,7 @@ "no-cache" ], "x-ms-request-id": [ - "625ac30d-7dd0-4350-b0c2-7e086f3ad8db" + "3b4d74f5-c54e-4abc-b732-dd8af910242b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -988,7 +988,7 @@ "no-cache" ], "ETag": [ - "W/\"83af58c5-cae6-4674-97fd-09c7a79eb141\"" + "W/\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -998,22 +998,22 @@ "14988" ], "x-ms-correlation-request-id": [ - "79a824b4-baf5-4d6d-ad20-2f94748a8c7d" + "d38d4ce1-8235-4dc0-823e-975362a8d487" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053612Z:79a824b4-baf5-4d6d-ad20-2f94748a8c7d" + "CENTRALUS:20150828T005811Z:d38d4ce1-8235-4dc0-823e-975362a8d487" ], "Date": [ - "Thu, 13 Aug 2015 05:36:12 GMT" + "Fri, 28 Aug 2015 00:58:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps1224\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps9686\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1025,10 +1025,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"niccrptestps1224\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94c0c32c-c10d-4c7c-a36a-f0f841e6e652\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"83af58c5-cae6-4674-97fd-09c7a79eb141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1224\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1224/subnets/subnetcrptestps1224\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"niccrptestps9686\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686\",\r\n \"etag\": \"W/\\\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f43eb779-25ac-4387-bd21-3ef5d644c33b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"b20e52cd-dfa6-43da-aa1e-9acfefae43a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps9686\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/virtualNetworks/vnetcrptestps9686/subnets/subnetcrptestps9686\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1405" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1040,10 +1040,10 @@ "no-cache" ], "x-ms-request-id": [ - "53a8778d-afbe-447a-9d07-3584b5822749" + "f14474c6-827f-44bc-853d-833342a40b10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/53a8778d-afbe-447a-9d07-3584b5822749?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/f14474c6-827f-44bc-853d-833342a40b10?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,20 +1059,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "45a279e5-dac7-4d1a-87d8-3fd6541cf626" + "2ff31fbf-c09f-4582-b218-ac0cf67afe14" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053612Z:45a279e5-dac7-4d1a-87d8-3fd6541cf626" + "CENTRALUS:20150828T005810Z:2ff31fbf-c09f-4582-b218-ac0cf67afe14" ], "Date": [ - "Thu, 13 Aug 2015 05:36:12 GMT" + "Fri, 28 Aug 2015 00:58:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/53a8778d-afbe-447a-9d07-3584b5822749?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNhODc3OGQtYWZiZS00NDdhLTlkMDctMzU4NGI1ODIyNzQ5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/f14474c6-827f-44bc-853d-833342a40b10?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjE0NDc0YzYtODI3Zi00NGJjLTg1M2QtODMzMzQyYTQwYjEwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "4046d4cc-ccff-4cec-b6cf-87b65df243dd" + "0b76e2fc-f4b0-433d-a280-0fbedcc3e36a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,20 +1114,20 @@ "14990" ], "x-ms-correlation-request-id": [ - "be2c0cea-c92c-4c9e-8625-49836b94f954" + "45317ac6-6708-4947-b467-f77fb549736c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053612Z:be2c0cea-c92c-4c9e-8625-49836b94f954" + "CENTRALUS:20150828T005810Z:45317ac6-6708-4947-b467-f77fb549736c" ], "Date": [ - "Thu, 13 Aug 2015 05:36:12 GMT" + "Fri, 28 Aug 2015 00:58:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Storage/storageAccounts/stocrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -1138,7 +1138,7 @@ "88" ], "x-ms-client-request-id": [ - "dc5aa2e6-a0a1-4c9e-93db-2949edeca401" + "c56578d4-70d2-46f3-a721-729db8f217a1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1162,44 +1162,44 @@ "25" ], "x-ms-request-id": [ - "f374be20-836a-488c-8eed-1278c7eff464" + "7da46f5e-7d5a-4df2-9a1d-7244f7ef689a" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7da46f5e-7d5a-4df2-9a1d-7244f7ef689a?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "cc989a85-6e2c-4043-baad-19586da61389" + "c3ccdffa-05c6-4b8d-8d82-7a984c2790d3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053615Z:cc989a85-6e2c-4043-baad-19586da61389" + "CENTRALUS:20150828T005813Z:c3ccdffa-05c6-4b8d-8d82-7a984c2790d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 05:36:15 GMT" + "Fri, 28 Aug 2015 00:58:13 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzNzRiZTIwLTgzNmEtNDg4Yy04ZWVkLTEyNzhjN2VmZjQ2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7da46f5e-7d5a-4df2-9a1d-7244f7ef689a?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdkYTQ2ZjVlLTdkNWEtNGRmMi05YTFkLTcyNDRmN2VmNjg5YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b39dabb6-9cdf-43f9-87b2-2b7d1a29e727" + "e9362116-f8e0-4b2c-9e3d-2dc01fc0d3f5" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1223,44 +1223,44 @@ "25" ], "x-ms-request-id": [ - "77ddcc62-d4b0-4ddf-9c38-c954c980a1a2" + "79658e8d-0ef5-4c63-b237-12b9354de827" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7da46f5e-7d5a-4df2-9a1d-7244f7ef689a?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "84e80482-9c3e-4e71-b545-793eb225d5f9" + "7343d77e-e4d5-4f0a-bd7a-2f7d1bbf9135" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053615Z:84e80482-9c3e-4e71-b545-793eb225d5f9" + "CENTRALUS:20150828T005813Z:7343d77e-e4d5-4f0a-bd7a-2f7d1bbf9135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 05:36:15 GMT" + "Fri, 28 Aug 2015 00:58:13 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f374be20-836a-488c-8eed-1278c7eff464?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2YzNzRiZTIwLTgzNmEtNDg4Yy04ZWVkLTEyNzhjN2VmZjQ2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/7da46f5e-7d5a-4df2-9a1d-7244f7ef689a?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdkYTQ2ZjVlLTdkNWEtNGRmMi05YTFkLTcyNDRmN2VmNjg5YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e782f2b6-9067-4a31-b56e-b13659fea787" + "50e050a3-8d2c-4919-b866-18d9b0ff11f1" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1281,7 +1281,7 @@ "no-cache" ], "x-ms-request-id": [ - "c4278bbd-701a-49d5-9e8d-3946b61fc4f7" + "025edc2a-6e38-4fe5-be69-49ca00bd3c73" ], "Cache-Control": [ "no-cache" @@ -1291,37 +1291,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "177f3d67-fcba-4bbf-8303-e7858f6187d4" + "a2bbb70a-0c94-4efe-b2ba-5c07e3534413" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053641Z:177f3d67-fcba-4bbf-8303-e7858f6187d4" + "CENTRALUS:20150828T005839Z:a2bbb70a-0c94-4efe-b2ba-5c07e3534413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 05:36:40 GMT" + "Fri, 28 Aug 2015 00:58:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Storage/storageAccounts/stocrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c47665b6-3f2c-452e-9495-3c20142eb337" + "f26c0c94-0f08-4ec4-96db-3c2856508dba" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224\",\r\n \"name\": \"stocrptestps1224\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1224.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1224.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1224.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T05:36:14.1920878Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Storage/storageAccounts/stocrptestps9686\",\r\n \"name\": \"stocrptestps9686\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9686.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9686.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9686.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-28T00:58:13.0401433Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1336,7 +1336,7 @@ "no-cache" ], "x-ms-request-id": [ - "fcf3f797-b83e-4871-a9c5-c3abca831cb4" + "28b9fa98-3e8f-44f2-aeba-909938f900e4" ], "Cache-Control": [ "no-cache" @@ -1346,37 +1346,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-correlation-request-id": [ - "d8981ee2-3b57-4e67-812e-c913f573bf40" + "07e86117-a98c-4228-839c-de026f0652e8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053641Z:d8981ee2-3b57-4e67-812e-c913f573bf40" + "CENTRALUS:20150828T005839Z:07e86117-a98c-4228-839c-de026f0652e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 05:36:41 GMT" + "Fri, 28 Aug 2015 00:58:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Storage/storageAccounts/stocrptestps9686?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d39cce5-9d18-4995-b4d3-07ff336108ca" + "f8658bc5-cddb-485c-a0ba-56f7fd4f858f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224\",\r\n \"name\": \"stocrptestps1224\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1224.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1224.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1224.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-13T05:36:14.1920878Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Storage/storageAccounts/stocrptestps9686\",\r\n \"name\": \"stocrptestps9686\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps9686.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps9686.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps9686.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-28T00:58:13.0401433Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "678" @@ -1391,7 +1391,7 @@ "no-cache" ], "x-ms-request-id": [ - "83cf173d-3e2f-41e1-b818-7dcfb9f59d1c" + "a1a9b09e-406d-4abb-9859-2df457cacfc3" ], "Cache-Control": [ "no-cache" @@ -1401,37 +1401,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-correlation-request-id": [ - "feca68f7-23db-4709-9ab5-c851f827a2a1" + "38765c5f-ebff-45b1-926a-0a401f9018a6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053641Z:feca68f7-23db-4709-9ab5-c851f827a2a1" + "CENTRALUS:20150828T005839Z:38765c5f-ebff-45b1-926a-0a401f9018a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 05:36:41 GMT" + "Fri, 28 Aug 2015 00:58:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Storage/storageAccounts/stocrptestps1224/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjI0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Storage/storageAccounts/stocrptestps9686/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHM5Njg2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a7a6053-185a-4521-813d-add4682b416b" + "dad53341-9310-4727-a1c4-d957851406bd" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"gpcz0iDLwQ9k9TrE/Nk4xgNhxRgqR8Wm0CbrlZY/eBbY/FnOlrU9MwSMYX7db+sgbfLHQc9Si42Z5sxi3lpj5w==\",\r\n \"key2\": \"2amkUuINbeh5rDHlydQvC9LOnLI6aCFYKjEUiyluwsLpo3C9Wu3OITm2EcDzbMFsu1r5brqhbINePRM+x5bB1g==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"NTAYyTFfod290a3mlEY3+35Hk/FPlfPvakZXkKfLWgmDZc/4aMs728RhNLermTEEQui4m0HNBXzmqdX+GqyW+g==\",\r\n \"key2\": \"lenLidTgZDlMnEijWpwJFDfDQPj33JbmIN2/3XIBuq+olvGJsfdXJQmiMbUA/yhtFhh/P04JDmYLJFIFQQGqRA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "197" @@ -1446,7 +1446,7 @@ "no-cache" ], "x-ms-request-id": [ - "e9f985cd-47bc-4da3-a248-9b755d1ae295" + "f6f253cf-fad9-442b-8b85-0aefb100bd9f" ], "Cache-Control": [ "no-cache" @@ -1456,28 +1456,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "902486e3-b34e-4124-8558-f5390159dddc" + "1880a047-23ef-4e6f-8d06-1b8cd9484a36" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053641Z:902486e3-b34e-4124-8558-f5390159dddc" + "CENTRALUS:20150828T005839Z:1880a047-23ef-4e6f-8d06-1b8cd9484a36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Thu, 13 Aug 2015 05:36:41 GMT" + "Fri, 28 Aug 2015 00:58:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1224\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1224\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps9686\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps9686\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -1489,7 +1489,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224\",\r\n \"name\": \"vmcrptestps1224\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686\",\r\n \"name\": \"vmcrptestps9686\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1934" @@ -1504,16 +1504,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "7d638b7c-f59a-4a55-84bb-83d520fe4853" + "37d41f11-71ec-4c5f-9e0b-b680bf4393ac" ], "Cache-Control": [ "no-cache" @@ -1523,23 +1523,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "75a0d98a-67e7-4d10-a4c4-79a3d70d54c3" + "f8936f3b-bcb5-4dd2-a83f-33a418071ed3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053644Z:75a0d98a-67e7-4d10-a4c4-79a3d70d54c3" + "CENTRALUS:20150828T005842Z:f8936f3b-bcb5-4dd2-a83f-33a418071ed3" ], "Date": [ - "Thu, 13 Aug 2015 05:36:43 GMT" + "Fri, 28 Aug 2015 00:58:41 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1547,7 +1547,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1565,10 +1565,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "0465a95e-6e2b-4900-b6ff-9e257c7ebc8e" + "aa05fdf6-61e0-4f96-ae0c-eb72d7981794" ], "Cache-Control": [ "no-cache" @@ -1578,23 +1578,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "e15d0bef-e743-4493-aa69-f3b5601dcaed" + "5d64e97c-46cf-421d-af0d-7a02466ff54f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053644Z:e15d0bef-e743-4493-aa69-f3b5601dcaed" + "CENTRALUS:20150828T005842Z:5d64e97c-46cf-421d-af0d-7a02466ff54f" ], "Date": [ - "Thu, 13 Aug 2015 05:36:43 GMT" + "Fri, 28 Aug 2015 00:58:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1602,7 +1602,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1620,10 +1620,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "49f37914-2da9-41a2-a6b5-9e9146c482b3" + "4c7faf9f-efe9-463c-86ca-78d146200b20" ], "Cache-Control": [ "no-cache" @@ -1633,23 +1633,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "a3e23ec2-878c-485c-a88d-31da94448ff8" + "bd32b3c3-0ea3-41e0-86cf-cd6631e48eb2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053714Z:a3e23ec2-878c-485c-a88d-31da94448ff8" + "CENTRALUS:20150828T005912Z:bd32b3c3-0ea3-41e0-86cf-cd6631e48eb2" ], "Date": [ - "Thu, 13 Aug 2015 05:37:14 GMT" + "Fri, 28 Aug 2015 00:59:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1657,7 +1657,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1675,10 +1675,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "a1e3d003-00e8-444d-ad1c-6198c364eb5e" + "e12705f3-1d25-4300-8536-b06f631bdadd" ], "Cache-Control": [ "no-cache" @@ -1688,23 +1688,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "7a75cf3f-9dd4-4fab-9060-f29efc28b7fc" + "9246f3f9-6a1a-4905-987a-07181bca5111" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053744Z:7a75cf3f-9dd4-4fab-9060-f29efc28b7fc" + "CENTRALUS:20150828T005943Z:9246f3f9-6a1a-4905-987a-07181bca5111" ], "Date": [ - "Thu, 13 Aug 2015 05:37:44 GMT" + "Fri, 28 Aug 2015 00:59:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1712,7 +1712,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1730,10 +1730,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "ad9bdfbb-ff71-44f0-83f4-c0638046e69f" + "d9244a47-6ad6-4d0f-9cda-3bd63388f345" ], "Cache-Control": [ "no-cache" @@ -1743,23 +1743,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "e5f66b26-d89f-41a4-8264-2f8582ed4118" + "6a6585d1-eadf-43b9-afe9-06cf3898cd1b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053815Z:e5f66b26-d89f-41a4-8264-2f8582ed4118" + "CENTRALUS:20150828T010013Z:6a6585d1-eadf-43b9-afe9-06cf3898cd1b" ], "Date": [ - "Thu, 13 Aug 2015 05:38:14 GMT" + "Fri, 28 Aug 2015 01:00:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1767,7 +1767,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1785,10 +1785,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "1dc4c17b-dd31-41e9-a4ab-115400f8363d" + "d486c58e-f7cb-4fd8-a414-7e463c656f6d" ], "Cache-Control": [ "no-cache" @@ -1798,23 +1798,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14995" ], "x-ms-correlation-request-id": [ - "c41a1fe5-cc5c-4af2-9e9b-ae3f48d8472e" + "c439da32-7dd2-427b-b631-f05a4e7dbb8b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053845Z:c41a1fe5-cc5c-4af2-9e9b-ae3f48d8472e" + "CENTRALUS:20150828T010043Z:c439da32-7dd2-427b-b631-f05a4e7dbb8b" ], "Date": [ - "Thu, 13 Aug 2015 05:38:45 GMT" + "Fri, 28 Aug 2015 01:00:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1822,7 +1822,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1840,10 +1840,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "a594f69d-43e1-4d33-8229-8970858cef8e" + "80f48a5d-57c1-48d9-ab90-79783140ba95" ], "Cache-Control": [ "no-cache" @@ -1853,23 +1853,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14994" ], "x-ms-correlation-request-id": [ - "2f202fa4-d51a-400f-b841-d4675245544b" + "6bdd9711-0655-485f-95cf-9e9dc22dabfa" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053915Z:2f202fa4-d51a-400f-b841-d4675245544b" + "CENTRALUS:20150828T010113Z:6bdd9711-0655-485f-95cf-9e9dc22dabfa" ], "Date": [ - "Thu, 13 Aug 2015 05:39:15 GMT" + "Fri, 28 Aug 2015 01:01:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,7 +1877,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1895,10 +1895,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "2b2c3d65-f6ca-40cd-bbd6-11e49b8b7ed0" + "d1698384-d947-403a-bda2-b8806c4fa578" ], "Cache-Control": [ "no-cache" @@ -1908,23 +1908,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14993" ], "x-ms-correlation-request-id": [ - "e17a9ff7-a643-4cd8-a4c0-09635252b857" + "2d0be5de-4bb2-4822-8e5c-30ffcb1601e4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T053946Z:e17a9ff7-a643-4cd8-a4c0-09635252b857" + "CENTRALUS:20150828T010144Z:2d0be5de-4bb2-4822-8e5c-30ffcb1601e4" ], "Date": [ - "Thu, 13 Aug 2015 05:39:46 GMT" + "Fri, 28 Aug 2015 01:01:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,7 +1932,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -1950,10 +1950,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "feb56313-f312-4345-96cf-07344fc1ca5b" + "e23be2b2-d1cc-48f6-81f8-8ef5e3e68216" ], "Cache-Control": [ "no-cache" @@ -1963,23 +1963,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14992" ], "x-ms-correlation-request-id": [ - "b15b923f-281c-41be-a484-195fc181d514" + "81cbae2c-7b09-42ac-a945-c7baa1b96ec8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054016Z:b15b923f-281c-41be-a484-195fc181d514" + "CENTRALUS:20150828T010214Z:81cbae2c-7b09-42ac-a945-c7baa1b96ec8" ], "Date": [ - "Thu, 13 Aug 2015 05:40:15 GMT" + "Fri, 28 Aug 2015 01:02:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1987,7 +1987,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2005,10 +2005,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "ced35b78-1f6e-4538-8191-e3c025ddfb41" + "3d0ccca2-7e38-4951-95cc-ebe2ed463560" ], "Cache-Control": [ "no-cache" @@ -2018,23 +2018,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-correlation-request-id": [ - "ab9bd630-a31d-4a5e-a318-4f2ea5e1b9de" + "c23109f7-da6e-4600-9f1d-ec11b124c0e4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054046Z:ab9bd630-a31d-4a5e-a318-4f2ea5e1b9de" + "CENTRALUS:20150828T010244Z:c23109f7-da6e-4600-9f1d-ec11b124c0e4" ], "Date": [ - "Thu, 13 Aug 2015 05:40:46 GMT" + "Fri, 28 Aug 2015 01:02:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2042,7 +2042,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2060,10 +2060,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "56ba1904-35f8-4798-b77a-37bb50f2373e" + "86d768a7-2334-48c9-a905-771cf7d6ecdf" ], "Cache-Control": [ "no-cache" @@ -2073,23 +2073,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "c891d0f2-2117-41e7-8c04-4f5f4d456cae" + "d9c0d0dd-75b3-4472-9965-573695f6b8ba" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054116Z:c891d0f2-2117-41e7-8c04-4f5f4d456cae" + "CENTRALUS:20150828T010315Z:d9c0d0dd-75b3-4472-9965-573695f6b8ba" ], "Date": [ - "Thu, 13 Aug 2015 05:41:16 GMT" + "Fri, 28 Aug 2015 01:03:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2097,7 +2097,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2115,10 +2115,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "2d13f041-ad7c-49c3-a52c-3bc6e13624ad" + "31d83975-965c-40d7-87de-b20247e2c0c6" ], "Cache-Control": [ "no-cache" @@ -2128,23 +2128,133 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" + ], + "x-ms-correlation-request-id": [ + "d2bd97f0-aea7-4be9-bd0e-645595ec49ae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T010345Z:d2bd97f0-aea7-4be9-bd0e-645595ec49ae" + ], + "Date": [ + "Fri, 28 Aug 2015 01:03:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "49588643-8a16-4577-a882-b73e8b78a542" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "f0df5d7b-218e-4285-b899-13c36b938732" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T010415Z:f0df5d7b-218e-4285-b899-13c36b938732" + ], + "Date": [ + "Fri, 28 Aug 2015 01:04:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "b1341c53-233c-4830-a95b-631e15027b3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" ], "x-ms-correlation-request-id": [ - "fd3633b5-854f-455d-ac7b-99768daf51de" + "68d25b40-5a1d-4016-941f-9e8ce698a636" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054147Z:fd3633b5-854f-455d-ac7b-99768daf51de" + "CENTRALUS:20150828T010445Z:68d25b40-5a1d-4016-941f-9e8ce698a636" ], "Date": [ - "Thu, 13 Aug 2015 05:41:46 GMT" + "Fri, 28 Aug 2015 01:04:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/7d638b7c-f59a-4a55-84bb-83d520fe4853?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2MzhiN2MtZjU5YS00YTU1LTg0YmItODNkNTIwZmU0ODUzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/37d41f11-71ec-4c5f-9e0b-b680bf4393ac?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzdkNDFmMTEtNzFlYy00YzVmLTllMGItYjY4MGJmNDM5M2FjP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2152,7 +2262,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"7d638b7c-f59a-4a55-84bb-83d520fe4853\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:36:43.7079366-07:00\",\r\n \"endTime\": \"2015-08-12T22:42:16.5538102-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"37d41f11-71ec-4c5f-9e0b-b680bf4393ac\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-27T17:58:42.0078593-07:00\",\r\n \"endTime\": \"2015-08-27T18:04:56.8227599-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "191" @@ -2170,10 +2280,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "b4a96f6e-5463-4839-af6f-4053a7d645e9" + "5bf5965f-4132-4e4f-bf1f-7d89b6f6efb9" ], "Cache-Control": [ "no-cache" @@ -2183,25 +2293,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14986" ], "x-ms-correlation-request-id": [ - "9271ef6e-8634-42ee-ae1f-e4bd9af0698b" + "bee3b4e3-c8da-4454-85c6-8e8e8749f8e2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054217Z:9271ef6e-8634-42ee-ae1f-e4bd9af0698b" + "CENTRALUS:20150828T010516Z:bee3b4e3-c8da-4454-85c6-8e8e8749f8e2" ], "Date": [ - "Thu, 13 Aug 2015 05:42:17 GMT" + "Fri, 28 Aug 2015 01:05:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk2ODYvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"protectedSettings\": {\r\n \"password\": \"FoO@123crptestps1224\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"UserName\": \"Bar12\"\r\n },\r\n \"protectedSettings\": {\r\n \"Password\": \"FoO@123crptestps9686\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" @@ -2213,7 +2323,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"UserName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ "539" @@ -2228,16 +2338,16 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "2218e02a-bf26-4369-8a8d-b99e9957946b" + "3ebbf743-c935-42ab-bda1-e3efcd10f411" ], "Cache-Control": [ "no-cache" @@ -2247,23 +2357,78 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "d2323308-dc48-49e2-a204-eee1180f0498" + "e9981e79-a99d-4713-818d-65076f3e8507" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054218Z:d2323308-dc48-49e2-a204-eee1180f0498" + "CENTRALUS:20150828T010518Z:e9981e79-a99d-4713-818d-65076f3e8507" ], "Date": [ - "Thu, 13 Aug 2015 05:42:18 GMT" + "Fri, 28 Aug 2015 01:05:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "3eed947d-59ae-4989-bed1-5ecbbaa483f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "fca5cdb1-6de8-4a2c-a40b-b442af8d7411" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T010518Z:fca5cdb1-6de8-4a2c-a40b-b442af8d7411" + ], + "Date": [ + "Fri, 28 Aug 2015 01:05:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2271,7 +2436,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2289,10 +2454,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "6f8b63bf-253e-4427-9b28-7f6ed1793e26" + "a16bc27f-a2b3-4a52-8a4f-3718d46725d9" ], "Cache-Control": [ "no-cache" @@ -2305,20 +2470,20 @@ "14984" ], "x-ms-correlation-request-id": [ - "9c6df300-9219-478f-a0a0-7f495c7127ff" + "022642c1-db1e-48c9-bc36-5bc0000cdc14" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054219Z:9c6df300-9219-478f-a0a0-7f495c7127ff" + "CENTRALUS:20150828T010548Z:022642c1-db1e-48c9-bc36-5bc0000cdc14" ], "Date": [ - "Thu, 13 Aug 2015 05:42:19 GMT" + "Fri, 28 Aug 2015 01:05:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2326,7 +2491,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2344,10 +2509,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "f5b7788f-b1e4-4a8b-a026-9fc69c6b0ec7" + "91be5e83-b691-4f88-98f1-bd22e1b860c8" ], "Cache-Control": [ "no-cache" @@ -2360,20 +2525,20 @@ "14983" ], "x-ms-correlation-request-id": [ - "1ae666fb-b1ba-444e-9dc8-29e514314a7f" + "62133349-8956-4130-8586-19858e3c9b2a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054249Z:1ae666fb-b1ba-444e-9dc8-29e514314a7f" + "CENTRALUS:20150828T010619Z:62133349-8956-4130-8586-19858e3c9b2a" ], "Date": [ - "Thu, 13 Aug 2015 05:42:48 GMT" + "Fri, 28 Aug 2015 01:06:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2381,7 +2546,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2399,10 +2564,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "830c6a17-4e10-4ae7-953d-aeeaa541cf09" + "f47bb08d-4fea-40cd-a5f9-7b526ab75007" ], "Cache-Control": [ "no-cache" @@ -2415,20 +2580,20 @@ "14982" ], "x-ms-correlation-request-id": [ - "df43bc62-ad6f-48a1-b8d9-42a92930e472" + "72fc9609-bab0-4f27-bb92-5341f97c3ec5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054319Z:df43bc62-ad6f-48a1-b8d9-42a92930e472" + "CENTRALUS:20150828T010649Z:72fc9609-bab0-4f27-bb92-5341f97c3ec5" ], "Date": [ - "Thu, 13 Aug 2015 05:43:19 GMT" + "Fri, 28 Aug 2015 01:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2436,7 +2601,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2454,10 +2619,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "ba7f7dc6-dce7-46da-a1c8-3f950efaa26a" + "0e39263f-2014-48da-a2aa-76269a7a1a63" ], "Cache-Control": [ "no-cache" @@ -2470,20 +2635,20 @@ "14981" ], "x-ms-correlation-request-id": [ - "706b521a-ab2a-4752-b630-a7ca7b14ea1a" + "2a53bd7f-ea1a-4b95-b435-1a1167f0f9ff" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054350Z:706b521a-ab2a-4752-b630-a7ca7b14ea1a" + "CENTRALUS:20150828T010719Z:2a53bd7f-ea1a-4b95-b435-1a1167f0f9ff" ], "Date": [ - "Thu, 13 Aug 2015 05:43:49 GMT" + "Fri, 28 Aug 2015 01:07:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2491,7 +2656,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2509,10 +2674,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "5cbc99f8-9a80-4ccc-bf66-cd4d1accdc3a" + "74beeadd-fa07-413c-8e9e-17e3696e2dc3" ], "Cache-Control": [ "no-cache" @@ -2525,20 +2690,20 @@ "14980" ], "x-ms-correlation-request-id": [ - "114b2908-b1b8-41d0-9d92-8e8f18730f1a" + "eada5c0f-4fcb-43ee-a88f-7ca98772dca0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054420Z:114b2908-b1b8-41d0-9d92-8e8f18730f1a" + "CENTRALUS:20150828T010750Z:eada5c0f-4fcb-43ee-a88f-7ca98772dca0" ], "Date": [ - "Thu, 13 Aug 2015 05:44:19 GMT" + "Fri, 28 Aug 2015 01:07:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2711,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2564,10 +2729,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "b288e738-d607-4198-898b-a30ebef7f719" + "ec92d27a-9f87-4008-af32-d7a93fdecfd7" ], "Cache-Control": [ "no-cache" @@ -2580,20 +2745,20 @@ "14979" ], "x-ms-correlation-request-id": [ - "b09a1444-53b4-4295-a352-856989e2393d" + "53389fbc-4588-4371-ac94-e138a6e5ef6c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054450Z:b09a1444-53b4-4295-a352-856989e2393d" + "CENTRALUS:20150828T010820Z:53389fbc-4588-4371-ac94-e138a6e5ef6c" ], "Date": [ - "Thu, 13 Aug 2015 05:44:50 GMT" + "Fri, 28 Aug 2015 01:08:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2601,7 +2766,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2619,10 +2784,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "29b2f655-87ae-4d92-8580-02f9e4d7b46a" + "c64759aa-0eef-435d-bdd1-9484edcaec16" ], "Cache-Control": [ "no-cache" @@ -2635,20 +2800,20 @@ "14978" ], "x-ms-correlation-request-id": [ - "2c8bb58c-8ffe-438e-b7e9-9d30e61c02eb" + "c1e25be7-b85f-4dfe-98fe-245ab9e1dc09" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054520Z:2c8bb58c-8ffe-438e-b7e9-9d30e61c02eb" + "CENTRALUS:20150828T010850Z:c1e25be7-b85f-4dfe-98fe-245ab9e1dc09" ], "Date": [ - "Thu, 13 Aug 2015 05:45:20 GMT" + "Fri, 28 Aug 2015 01:08:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2656,7 +2821,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2674,10 +2839,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "eb324bcc-be3e-4ded-940d-53e1811e7b80" + "368eb1a7-0ff4-412f-9bab-910be0b32b26" ], "Cache-Control": [ "no-cache" @@ -2690,20 +2855,20 @@ "14977" ], "x-ms-correlation-request-id": [ - "2b15676e-97f7-4402-99f2-a9a8d89b9917" + "45c32652-ec6f-46cd-a974-8543697a4ec7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054551Z:2b15676e-97f7-4402-99f2-a9a8d89b9917" + "CENTRALUS:20150828T010920Z:45c32652-ec6f-46cd-a974-8543697a4ec7" ], "Date": [ - "Thu, 13 Aug 2015 05:45:50 GMT" + "Fri, 28 Aug 2015 01:09:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2711,7 +2876,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2729,10 +2894,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "03cd1e53-5b5b-4548-84a9-531dd8331735" + "8b102c1a-617f-465f-adaa-f2967a5742f5" ], "Cache-Control": [ "no-cache" @@ -2745,20 +2910,20 @@ "14976" ], "x-ms-correlation-request-id": [ - "dc0cf4ca-db20-4b54-bd8d-6d60c8dbc584" + "37c5e516-3f4c-40c1-8101-2afd4442d2c2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054621Z:dc0cf4ca-db20-4b54-bd8d-6d60c8dbc584" + "CENTRALUS:20150828T010951Z:37c5e516-3f4c-40c1-8101-2afd4442d2c2" ], "Date": [ - "Thu, 13 Aug 2015 05:46:21 GMT" + "Fri, 28 Aug 2015 01:09:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2766,7 +2931,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2784,10 +2949,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "0d1006f9-f705-455e-b8a9-90b305055f1d" + "6d501505-fdf9-4846-8422-eb3d3551e855" ], "Cache-Control": [ "no-cache" @@ -2800,20 +2965,20 @@ "14975" ], "x-ms-correlation-request-id": [ - "d0dd71d2-1656-463d-951c-e9bd2f48d649" + "36472255-d809-4686-bd97-ba83e9a5c881" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054651Z:d0dd71d2-1656-463d-951c-e9bd2f48d649" + "CENTRALUS:20150828T011021Z:36472255-d809-4686-bd97-ba83e9a5c881" ], "Date": [ - "Thu, 13 Aug 2015 05:46:51 GMT" + "Fri, 28 Aug 2015 01:10:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2986,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2839,10 +3004,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "b779415d-e5b5-4c01-88c2-279b8961da60" + "576e5b4e-aa91-4831-835e-44c82ff411fd" ], "Cache-Control": [ "no-cache" @@ -2855,20 +3020,20 @@ "14974" ], "x-ms-correlation-request-id": [ - "3e21fb93-7e6a-46bd-91a4-166c13c2ca69" + "f077f8c7-4cd4-4f48-a70f-9c3fd4d62742" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054722Z:3e21fb93-7e6a-46bd-91a4-166c13c2ca69" + "CENTRALUS:20150828T011051Z:f077f8c7-4cd4-4f48-a70f-9c3fd4d62742" ], "Date": [ - "Thu, 13 Aug 2015 05:47:21 GMT" + "Fri, 28 Aug 2015 01:10:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2876,7 +3041,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2894,10 +3059,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "7fd2f898-0f0e-4cf7-8076-4fd9ece1dfdf" + "09efa142-5914-488c-abfc-5ec5cd5e68b2" ], "Cache-Control": [ "no-cache" @@ -2910,20 +3075,20 @@ "14973" ], "x-ms-correlation-request-id": [ - "0210cdb2-748e-4c63-86e9-042fac145e92" + "5e2bc29d-70ce-4bc9-97aa-380c58288a8e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054752Z:0210cdb2-748e-4c63-86e9-042fac145e92" + "CENTRALUS:20150828T011122Z:5e2bc29d-70ce-4bc9-97aa-380c58288a8e" ], "Date": [ - "Thu, 13 Aug 2015 05:47:52 GMT" + "Fri, 28 Aug 2015 01:11:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2931,7 +3096,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -2949,10 +3114,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "90343cbb-0fdc-4671-8128-4df97abead91" + "ce1e811f-c034-4b0d-9263-f557ebf986d8" ], "Cache-Control": [ "no-cache" @@ -2965,20 +3130,20 @@ "14972" ], "x-ms-correlation-request-id": [ - "f64b0b98-caa1-4042-ad63-f4af2ee6d271" + "9e0cebec-5015-43d3-bf29-4949632437ce" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054822Z:f64b0b98-caa1-4042-ad63-f4af2ee6d271" + "CENTRALUS:20150828T011152Z:9e0cebec-5015-43d3-bf29-4949632437ce" ], "Date": [ - "Thu, 13 Aug 2015 05:48:22 GMT" + "Fri, 28 Aug 2015 01:11:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2986,7 +3151,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3004,10 +3169,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "5a55f615-d173-462e-b41f-9e78f031a8a1" + "03bc9012-e4a2-424c-ab01-ce66f099d1a3" ], "Cache-Control": [ "no-cache" @@ -3020,20 +3185,20 @@ "14971" ], "x-ms-correlation-request-id": [ - "8f605fd7-2dc7-4752-8314-07660d4fa1f7" + "10307f2d-d2b9-4671-8846-18bc8eb5e142" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054853Z:8f605fd7-2dc7-4752-8314-07660d4fa1f7" + "CENTRALUS:20150828T011222Z:10307f2d-d2b9-4671-8846-18bc8eb5e142" ], "Date": [ - "Thu, 13 Aug 2015 05:48:52 GMT" + "Fri, 28 Aug 2015 01:12:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3041,7 +3206,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3059,10 +3224,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "c42f9bd1-476d-4aa2-8abf-fb1b70e34b2c" + "e2006315-7fef-4e53-bb0a-cc5d06fc3ec0" ], "Cache-Control": [ "no-cache" @@ -3075,20 +3240,20 @@ "14970" ], "x-ms-correlation-request-id": [ - "2718d699-acc4-4b29-a30d-8a1661b89141" + "f88a4088-0297-47ac-9e08-a68373f3cde9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054923Z:2718d699-acc4-4b29-a30d-8a1661b89141" + "CENTRALUS:20150828T011253Z:f88a4088-0297-47ac-9e08-a68373f3cde9" ], "Date": [ - "Thu, 13 Aug 2015 05:49:23 GMT" + "Fri, 28 Aug 2015 01:12:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3096,7 +3261,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3114,10 +3279,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "ae2b5fa3-0774-4329-9ff9-49c24d4ecbd7" + "f5fe0c72-573b-46a3-b9af-e5408684940c" ], "Cache-Control": [ "no-cache" @@ -3130,20 +3295,20 @@ "14969" ], "x-ms-correlation-request-id": [ - "519b5457-195a-49aa-a20a-2661f077a1be" + "2ae48dc3-0009-40cf-8a20-c927951b15aa" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T054953Z:519b5457-195a-49aa-a20a-2661f077a1be" + "CENTRALUS:20150828T011323Z:2ae48dc3-0009-40cf-8a20-c927951b15aa" ], "Date": [ - "Thu, 13 Aug 2015 05:49:53 GMT" + "Fri, 28 Aug 2015 01:13:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3151,7 +3316,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3169,10 +3334,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "c421aa53-d0a7-4144-baec-2eeddb4fe4b4" + "6c7896ca-8bfa-406f-a449-335fe01daa7b" ], "Cache-Control": [ "no-cache" @@ -3185,20 +3350,20 @@ "14968" ], "x-ms-correlation-request-id": [ - "357e16b6-e2f2-4b5b-89a1-720da7d80ed0" + "f22d2fc1-5bb5-4259-bffa-7d3bd4a73065" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055024Z:357e16b6-e2f2-4b5b-89a1-720da7d80ed0" + "CENTRALUS:20150828T011353Z:f22d2fc1-5bb5-4259-bffa-7d3bd4a73065" ], "Date": [ - "Thu, 13 Aug 2015 05:50:23 GMT" + "Fri, 28 Aug 2015 01:13:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3371,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3224,10 +3389,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "49c2c512-9480-4669-88ca-df0f218ca965" + "53d353d3-3b76-4e60-ac89-3c7544e24235" ], "Cache-Control": [ "no-cache" @@ -3240,20 +3405,20 @@ "14967" ], "x-ms-correlation-request-id": [ - "9100d6a0-4b83-4c32-adb5-2d9ae6205647" + "e13cbe7d-c531-43d1-b472-b0e528a99305" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055054Z:9100d6a0-4b83-4c32-adb5-2d9ae6205647" + "CENTRALUS:20150828T011424Z:e13cbe7d-c531-43d1-b472-b0e528a99305" ], "Date": [ - "Thu, 13 Aug 2015 05:50:54 GMT" + "Fri, 28 Aug 2015 01:14:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3261,7 +3426,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3279,10 +3444,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "8cb32f8e-7500-424d-8201-eeb590840981" + "355275ca-3b4d-490d-a520-0f536969e07f" ], "Cache-Control": [ "no-cache" @@ -3295,20 +3460,20 @@ "14966" ], "x-ms-correlation-request-id": [ - "9fb4dd92-78f1-4f7f-8e57-e67b7c0b5a88" + "4da828a0-5d84-4ca6-95f5-5474242853e3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055124Z:9fb4dd92-78f1-4f7f-8e57-e67b7c0b5a88" + "CENTRALUS:20150828T011454Z:4da828a0-5d84-4ca6-95f5-5474242853e3" ], "Date": [ - "Thu, 13 Aug 2015 05:51:24 GMT" + "Fri, 28 Aug 2015 01:14:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3316,7 +3481,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3334,10 +3499,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "103b1619-90ca-48cd-9d78-2006afe2beaf" + "0f3c93aa-b019-4585-b742-77bdd482359b" ], "Cache-Control": [ "no-cache" @@ -3350,20 +3515,20 @@ "14965" ], "x-ms-correlation-request-id": [ - "44be96db-9e24-4bc2-aac0-afa99f756002" + "0e48f6b4-cc87-44cb-bc0e-ace101a6ca99" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055155Z:44be96db-9e24-4bc2-aac0-afa99f756002" + "CENTRALUS:20150828T011524Z:0e48f6b4-cc87-44cb-bc0e-ace101a6ca99" ], "Date": [ - "Thu, 13 Aug 2015 05:51:54 GMT" + "Fri, 28 Aug 2015 01:15:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3371,7 +3536,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3389,10 +3554,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "86645fbf-3b42-4044-8567-8afd19b2f619" + "b48117af-5c18-49d0-a231-21c88310724a" ], "Cache-Control": [ "no-cache" @@ -3405,20 +3570,20 @@ "14964" ], "x-ms-correlation-request-id": [ - "67f370f5-5bf1-45af-bc40-42b389981d24" + "1a35a56c-a821-457b-8453-5f38b179e80a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055225Z:67f370f5-5bf1-45af-bc40-42b389981d24" + "CENTRALUS:20150828T011555Z:1a35a56c-a821-457b-8453-5f38b179e80a" ], "Date": [ - "Thu, 13 Aug 2015 05:52:24 GMT" + "Fri, 28 Aug 2015 01:15:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3426,7 +3591,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3444,10 +3609,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "f0724193-0e49-407b-b2d5-07a7438971c2" + "e4260ff5-0a48-4697-9577-8d7116b239c8" ], "Cache-Control": [ "no-cache" @@ -3460,20 +3625,20 @@ "14963" ], "x-ms-correlation-request-id": [ - "fbda63ac-6c6d-4a51-ba5c-3ac8ea8122ab" + "9fcafd5e-b17a-45e3-b799-e73aafb79a2a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055255Z:fbda63ac-6c6d-4a51-ba5c-3ac8ea8122ab" + "CENTRALUS:20150828T011625Z:9fcafd5e-b17a-45e3-b799-e73aafb79a2a" ], "Date": [ - "Thu, 13 Aug 2015 05:52:55 GMT" + "Fri, 28 Aug 2015 01:16:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3481,7 +3646,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3499,10 +3664,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "280159b0-3900-4ca2-9af8-8153c5ac91b6" + "b5cd7b2b-f4b3-4a94-afb4-35ac90ba7958" ], "Cache-Control": [ "no-cache" @@ -3515,20 +3680,20 @@ "14962" ], "x-ms-correlation-request-id": [ - "bc6eb64c-a636-45c6-8986-1838e655183c" + "07d8664e-60c2-42cc-97fd-34b4f31a1cf7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055325Z:bc6eb64c-a636-45c6-8986-1838e655183c" + "CENTRALUS:20150828T011655Z:07d8664e-60c2-42cc-97fd-34b4f31a1cf7" ], "Date": [ - "Thu, 13 Aug 2015 05:53:25 GMT" + "Fri, 28 Aug 2015 01:16:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3536,7 +3701,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3554,10 +3719,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "a46320d3-8a39-41d1-a9af-76182f1deeec" + "93bc24e9-4d17-49ba-8f95-29ed983df3fa" ], "Cache-Control": [ "no-cache" @@ -3570,20 +3735,20 @@ "14961" ], "x-ms-correlation-request-id": [ - "7cd2eeb2-ed78-46a0-aa32-7062371c5372" + "deebef77-f854-43c8-80b0-128702048554" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055356Z:7cd2eeb2-ed78-46a0-aa32-7062371c5372" + "CENTRALUS:20150828T011725Z:deebef77-f854-43c8-80b0-128702048554" ], "Date": [ - "Thu, 13 Aug 2015 05:53:55 GMT" + "Fri, 28 Aug 2015 01:17:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,7 +3756,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3609,10 +3774,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "9834e3bc-6efc-4c80-8d0a-4aacc30d3811" + "eb82bdd3-c0be-405e-9069-13cd2dbb5a8a" ], "Cache-Control": [ "no-cache" @@ -3625,20 +3790,20 @@ "14960" ], "x-ms-correlation-request-id": [ - "bf715826-dc6f-420e-a948-eefbde2dccb8" + "e595e15f-6c47-4e38-938a-946f6a82b51e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055426Z:bf715826-dc6f-420e-a948-eefbde2dccb8" + "CENTRALUS:20150828T011756Z:e595e15f-6c47-4e38-938a-946f6a82b51e" ], "Date": [ - "Thu, 13 Aug 2015 05:54:26 GMT" + "Fri, 28 Aug 2015 01:17:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3646,7 +3811,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3664,10 +3829,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "68908c00-4f0b-4483-9de6-6d6f54a0d66d" + "295558f0-7914-4465-9302-6dad28b2b0e6" ], "Cache-Control": [ "no-cache" @@ -3680,20 +3845,20 @@ "14959" ], "x-ms-correlation-request-id": [ - "74cfe83b-be6d-49d2-b5b9-30e8dbe5c357" + "f3f7a718-9b71-4899-9ac5-39911eaffd50" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055456Z:74cfe83b-be6d-49d2-b5b9-30e8dbe5c357" + "CENTRALUS:20150828T011826Z:f3f7a718-9b71-4899-9ac5-39911eaffd50" ], "Date": [ - "Thu, 13 Aug 2015 05:54:55 GMT" + "Fri, 28 Aug 2015 01:18:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3701,7 +3866,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3719,10 +3884,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "3ed275ef-1e99-4f24-8d6d-6759b6b657f3" + "bf2ccbd1-0bb6-4f8d-8dc5-b76c2c613fee" ], "Cache-Control": [ "no-cache" @@ -3735,20 +3900,20 @@ "14958" ], "x-ms-correlation-request-id": [ - "4b18d442-6ce8-4082-a802-f814347d3e73" + "133b120f-db7f-4081-98b4-e4fde986693c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055526Z:4b18d442-6ce8-4082-a802-f814347d3e73" + "CENTRALUS:20150828T011856Z:133b120f-db7f-4081-98b4-e4fde986693c" ], "Date": [ - "Thu, 13 Aug 2015 05:55:26 GMT" + "Fri, 28 Aug 2015 01:18:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3756,7 +3921,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3774,10 +3939,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "3a8243a5-12fc-46a8-83d5-bd16912b2f5e" + "a398309a-bc12-41f1-bdfe-9ce83fff6d85" ], "Cache-Control": [ "no-cache" @@ -3790,20 +3955,20 @@ "14957" ], "x-ms-correlation-request-id": [ - "aef16b81-230a-47bd-b554-0377a6f48982" + "bd477b08-e750-4cba-8a3d-b1798ecfb7ca" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055557Z:aef16b81-230a-47bd-b554-0377a6f48982" + "CENTRALUS:20150828T011927Z:bd477b08-e750-4cba-8a3d-b1798ecfb7ca" ], "Date": [ - "Thu, 13 Aug 2015 05:55:56 GMT" + "Fri, 28 Aug 2015 01:19:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3811,7 +3976,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3829,10 +3994,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "d509df4d-d329-4e64-bf9b-f7bb0ac9e825" + "343ea281-96ca-4fc1-81be-4ba5fe8d5cad" ], "Cache-Control": [ "no-cache" @@ -3845,20 +4010,20 @@ "14956" ], "x-ms-correlation-request-id": [ - "9ecde86e-4406-4b0f-9892-162c6c3f323e" + "7ba9499f-2188-4556-965b-d8a24349c4e9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055627Z:9ecde86e-4406-4b0f-9892-162c6c3f323e" + "CENTRALUS:20150828T011957Z:7ba9499f-2188-4556-965b-d8a24349c4e9" ], "Date": [ - "Thu, 13 Aug 2015 05:56:27 GMT" + "Fri, 28 Aug 2015 01:19:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,7 +4031,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ "141" @@ -3884,10 +4049,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "829fa685-2cf6-46e6-bfed-202d23353dda" + "182e8ffc-18d0-4c2a-94a0-fb3200fa7700" ], "Cache-Control": [ "no-cache" @@ -3900,20 +4065,20 @@ "14955" ], "x-ms-correlation-request-id": [ - "47bb462f-6609-4638-b3de-e664c60796c0" + "c4b353ed-50d0-47af-9694-ba7a9c0faf90" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055657Z:47bb462f-6609-4638-b3de-e664c60796c0" + "CENTRALUS:20150828T012027Z:c4b353ed-50d0-47af-9694-ba7a9c0faf90" ], "Date": [ - "Thu, 13 Aug 2015 05:56:56 GMT" + "Fri, 28 Aug 2015 01:20:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/2218e02a-bf26-4369-8a8d-b99e9957946b?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjIxOGUwMmEtYmYyNi00MzY5LThhOGQtYjk5ZTk5NTc5NDZiP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3921,10 +4086,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"2218e02a-bf26-4369-8a8d-b99e9957946b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-12T22:42:18.8506939-07:00\",\r\n \"endTime\": \"2015-08-12T22:57:08.5433779-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "191" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3939,10 +4104,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "cd537403-bf54-45b1-9d4b-a5261eceefb0" + "2a77c9b0-a4fa-4d8d-adc7-f35a4b54a1ec" ], "Cache-Control": [ "no-cache" @@ -3955,20 +4120,20 @@ "14954" ], "x-ms-correlation-request-id": [ - "6756c00b-abc5-4b07-88eb-74a88b4116a1" + "cdb4b75d-a7f5-40b1-977d-65f0c049bbc4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055728Z:6756c00b-abc5-4b07-88eb-74a88b4116a1" + "CENTRALUS:20150828T012057Z:cdb4b75d-a7f5-40b1-977d-65f0c049bbc4" ], "Date": [ - "Thu, 13 Aug 2015 05:57:27 GMT" + "Fri, 28 Aug 2015 01:20:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3976,10 +4141,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3994,10 +4159,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "fe232518-8d9f-4538-9adf-a600490c7870" + "60f1680b-9087-436f-80ab-82e008094ee5" ], "Cache-Control": [ "no-cache" @@ -4010,20 +4175,20 @@ "14953" ], "x-ms-correlation-request-id": [ - "1e7376ca-30b3-434c-8047-f40091c8efa5" + "161af7cc-a095-468b-abbe-1254900feac8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055728Z:1e7376ca-30b3-434c-8047-f40091c8efa5" + "CENTRALUS:20150828T012128Z:161af7cc-a095-468b-abbe-1254900feac8" ], "Date": [ - "Thu, 13 Aug 2015 05:57:27 GMT" + "Fri, 28 Aug 2015 01:21:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest?$expand=instanceView&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQvZXh0ZW5zaW9ucy9jc2V0ZXN0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4031,10 +4196,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Succesfully updated build-in Admin account and enabled Remote Desktop connection to the machine\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "987" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4049,10 +4214,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "17582260-6cb1-4f63-b079-7a40739d5de7" + "6f4d51de-a611-4eda-b722-217eac157962" ], "Cache-Control": [ "no-cache" @@ -4065,20 +4230,20 @@ "14952" ], "x-ms-correlation-request-id": [ - "b9f8b30a-7aa1-4791-be6b-ec815cec52fb" + "5ba1c325-1dee-4542-b31c-204c51182644" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055728Z:b9f8b30a-7aa1-4791-be6b-ec815cec52fb" + "CENTRALUS:20150828T012158Z:5ba1c325-1dee-4542-b31c-204c51182644" ], "Date": [ - "Thu, 13 Aug 2015 05:57:28 GMT" + "Fri, 28 Aug 2015 01:21:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4086,10 +4251,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1224.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Network/networkInterfaces/niccrptestps1224\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1224/providers/Microsoft.Compute/virtualMachines/vmcrptestps1224\",\r\n \"name\": \"vmcrptestps1224\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2561" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4104,10 +4269,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130837074125707228" + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "53e2a180-8ea2-400f-bdc9-9b3a85dc1c79" + "4796d253-977d-4b08-bd8f-6e055edf8aa2" ], "Cache-Control": [ "no-cache" @@ -4120,31 +4285,34 @@ "14951" ], "x-ms-correlation-request-id": [ - "232fcee1-8787-4134-8c41-5227bfc54784" + "bc501d92-0683-4759-9ddf-190b089b3c7d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055728Z:232fcee1-8787-4134-8c41-5227bfc54784" + "CENTRALUS:20150828T012228Z:bc501d92-0683-4759-9ddf-190b089b3c7d" ], "Date": [ - "Thu, 13 Aug 2015 05:57:28 GMT" + "Fri, 28 Aug 2015 01:22:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1224?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4152,53 +4320,54 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "f380bcdd-a941-4e70-a70d-9c48ebee9e34" + "e4a2df3b-2ef0-481a-ae4f-8ad91633f1e6" ], - "x-ms-correlation-request-id": [ - "f380bcdd-a941-4e70-a70d-9c48ebee9e34" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055731Z:f380bcdd-a941-4e70-a70d-9c48ebee9e34" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "547b8446-c175-496d-a321-dc6722c715b3" ], - "Date": [ - "Thu, 13 Aug 2015 05:57:30 GMT" + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T012259Z:547b8446-c175-496d-a321-dc6722c715b3" ], - "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "Date": [ + "Fri, 28 Aug 2015 01:22:58 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -4206,39 +4375,311 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" ], "x-ms-request-id": [ - "c09adb09-ced7-406a-b5cd-e91a87d27a2f" + "3ee246e4-5cbf-49c0-91c5-5ac387ea46ea" ], - "x-ms-correlation-request-id": [ - "c09adb09-ced7-406a-b5cd-e91a87d27a2f" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055731Z:c09adb09-ced7-406a-b5cd-e91a87d27a2f" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "a7fe8abc-7d33-432c-856d-46b54dfa9a32" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T012329Z:a7fe8abc-7d33-432c-856d-46b54dfa9a32" + ], + "Date": [ + "Fri, 28 Aug 2015 01:23:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/3ebbf743-c935-42ab-bda1-e3efcd10f411?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2ViYmY3NDMtYzkzNS00MmFiLWJkYTEtZTNlZmNkMTBmNDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3ebbf743-c935-42ab-bda1-e3efcd10f411\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-27T18:05:18.3072688-07:00\",\r\n \"endTime\": \"2015-08-27T18:23:49.0487522-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "83c55940-fbbb-4d89-8b68-a9f89afa2d42" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "7d66bdd8-b982-4169-8375-99ffa068339a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T012359Z:7d66bdd8-b982-4169-8375-99ffa068339a" + ], + "Date": [ + "Fri, 28 Aug 2015 01:23:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk2ODYvZXh0ZW5zaW9ucy9jc2V0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"UserName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "540" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "5e71f82c-27c5-4d12-91f3-005ce17812bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "4bdbfe1a-b738-4a6b-af6f-0e01eefef2b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T012400Z:4bdbfe1a-b738-4a6b-af6f-0e01eefef2b5" + ], + "Date": [ + "Fri, 28 Aug 2015 01:23:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest?$expand=instanceView&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk2ODYvZXh0ZW5zaW9ucy9jc2V0ZXN0PyRleHBhbmQ9aW5zdGFuY2VWaWV3JmFwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"UserName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Succesfully updated build-in Admin account and enabled Remote Desktop connection to the machine\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "987" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "27c17139-fefc-42fb-8c3d-fdb371c2239a" + ], "Cache-Control": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "a7f66f50-c882-45d5-83bd-9ec48c5513a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T012400Z:a7f66f50-c882-45d5-83bd-9ec48c5513a6" + ], "Date": [ - "Thu, 13 Aug 2015 05:57:30 GMT" + "Fri, 28 Aug 2015 01:23:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczk2ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3Rwczk2ODY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps9686.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Network/networkInterfaces/niccrptestps9686\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"UserName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps9686/providers/Microsoft.Compute/virtualMachines/vmcrptestps9686\",\r\n \"name\": \"vmcrptestps9686\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2561" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130800750526268318" + ], + "x-ms-request-id": [ + "c732bd6b-4838-4780-bcb2-8eb2269b3912" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "0b79fd20-f271-4684-b719-e6c3a5981be5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150828T012400Z:0b79fd20-f271-4684-b719-e6c3a5981be5" + ], + "Date": [ + "Fri, 28 Aug 2015 01:24:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps9686?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczk2ODY/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": [ + "1193" + ], + "x-ms-request-id": [ + "9d26c087-7686-4d50-8ec4-9df4b98cd7f8" + ], + "x-ms-correlation-request-id": [ + "9d26c087-7686-4d50-8ec4-9df4b98cd7f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T012401Z:9d26c087-7686-4d50-8ec4-9df4b98cd7f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 01:24:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4264,16 +4705,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14993" ], "x-ms-request-id": [ - "15e179f9-3403-40ec-8bae-ed2e75206996" + "b6529274-29d9-45aa-ba9f-d8e683dd915d" ], "x-ms-correlation-request-id": [ - "15e179f9-3403-40ec-8bae-ed2e75206996" + "b6529274-29d9-45aa-ba9f-d8e683dd915d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055746Z:15e179f9-3403-40ec-8bae-ed2e75206996" + "WESTUS:20150828T012401Z:b6529274-29d9-45aa-ba9f-d8e683dd915d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4282,17 +4723,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:57:46 GMT" + "Fri, 28 Aug 2015 01:24:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4318,16 +4759,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14992" ], "x-ms-request-id": [ - "3add545c-a354-415d-852b-26670d82ac12" + "07efe072-8bc1-406d-adae-8de1531a1a78" ], "x-ms-correlation-request-id": [ - "3add545c-a354-415d-852b-26670d82ac12" + "07efe072-8bc1-406d-adae-8de1531a1a78" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055801Z:3add545c-a354-415d-852b-26670d82ac12" + "WESTUS:20150828T012416Z:07efe072-8bc1-406d-adae-8de1531a1a78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,17 +4777,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:58:01 GMT" + "Fri, 28 Aug 2015 01:24:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4372,16 +4813,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14991" ], "x-ms-request-id": [ - "9863b707-8820-4313-ba31-11c1141501ec" + "a2bc0b2d-62de-4918-b785-9d548600a80f" ], "x-ms-correlation-request-id": [ - "9863b707-8820-4313-ba31-11c1141501ec" + "a2bc0b2d-62de-4918-b785-9d548600a80f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055816Z:9863b707-8820-4313-ba31-11c1141501ec" + "WESTUS:20150828T012431Z:a2bc0b2d-62de-4918-b785-9d548600a80f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4390,17 +4831,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:58:15 GMT" + "Fri, 28 Aug 2015 01:24:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4426,16 +4867,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14990" ], "x-ms-request-id": [ - "230d6249-672a-40a7-aad2-6606fe448d2c" + "5a120c0f-7a29-4e07-aea8-917b921dae9e" ], "x-ms-correlation-request-id": [ - "230d6249-672a-40a7-aad2-6606fe448d2c" + "5a120c0f-7a29-4e07-aea8-917b921dae9e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055831Z:230d6249-672a-40a7-aad2-6606fe448d2c" + "WESTUS:20150828T012446Z:5a120c0f-7a29-4e07-aea8-917b921dae9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4444,17 +4885,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:58:31 GMT" + "Fri, 28 Aug 2015 01:24:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4480,16 +4921,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14989" ], "x-ms-request-id": [ - "74feab07-e109-4760-954c-bf3896854c33" + "8514d52c-86b4-4f98-adf1-ddc02aacfdb8" ], "x-ms-correlation-request-id": [ - "74feab07-e109-4760-954c-bf3896854c33" + "8514d52c-86b4-4f98-adf1-ddc02aacfdb8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055847Z:74feab07-e109-4760-954c-bf3896854c33" + "WESTUS:20150828T012501Z:8514d52c-86b4-4f98-adf1-ddc02aacfdb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4498,17 +4939,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:58:46 GMT" + "Fri, 28 Aug 2015 01:25:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4534,16 +4975,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14988" ], "x-ms-request-id": [ - "e95789c5-b7b2-4fd4-a381-69dc41ecaa78" + "085d0604-bda9-44bd-bda1-6c527d598ac5" ], "x-ms-correlation-request-id": [ - "e95789c5-b7b2-4fd4-a381-69dc41ecaa78" + "085d0604-bda9-44bd-bda1-6c527d598ac5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055902Z:e95789c5-b7b2-4fd4-a381-69dc41ecaa78" + "WESTUS:20150828T012516Z:085d0604-bda9-44bd-bda1-6c527d598ac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4552,17 +4993,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:59:01 GMT" + "Fri, 28 Aug 2015 01:25:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4588,16 +5029,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14987" ], "x-ms-request-id": [ - "dba87652-3714-4520-bc16-c4a5dfe9ffc1" + "a9ceff0e-dd10-4299-8bf7-0296f9e953e2" ], "x-ms-correlation-request-id": [ - "dba87652-3714-4520-bc16-c4a5dfe9ffc1" + "a9ceff0e-dd10-4299-8bf7-0296f9e953e2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055917Z:dba87652-3714-4520-bc16-c4a5dfe9ffc1" + "WESTUS:20150828T012531Z:a9ceff0e-dd10-4299-8bf7-0296f9e953e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4606,17 +5047,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:59:16 GMT" + "Fri, 28 Aug 2015 01:25:30 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4642,16 +5083,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14986" ], "x-ms-request-id": [ - "4e6a8e10-cdd2-418a-a413-aefbf466e203" + "dc8abeba-4e87-4f63-8929-c008c551b3e7" ], "x-ms-correlation-request-id": [ - "4e6a8e10-cdd2-418a-a413-aefbf466e203" + "dc8abeba-4e87-4f63-8929-c008c551b3e7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055932Z:4e6a8e10-cdd2-418a-a413-aefbf466e203" + "WESTUS:20150828T012546Z:dc8abeba-4e87-4f63-8929-c008c551b3e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4660,17 +5101,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:59:32 GMT" + "Fri, 28 Aug 2015 01:25:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,16 +5137,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14985" ], "x-ms-request-id": [ - "2ba82cc9-7f5c-43a3-bdb0-a7f6849cc5c6" + "581f283c-05bf-4f65-bd9d-9e47aa6175f6" ], "x-ms-correlation-request-id": [ - "2ba82cc9-7f5c-43a3-bdb0-a7f6849cc5c6" + "581f283c-05bf-4f65-bd9d-9e47aa6175f6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T055947Z:2ba82cc9-7f5c-43a3-bdb0-a7f6849cc5c6" + "WESTUS:20150828T012601Z:581f283c-05bf-4f65-bd9d-9e47aa6175f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4714,17 +5155,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 05:59:47 GMT" + "Fri, 28 Aug 2015 01:26:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4750,16 +5191,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14984" ], "x-ms-request-id": [ - "bea78c85-571d-4b1e-b1ff-05ca6298123b" + "0d9ac284-dd9b-49ed-b1b0-f96e4ec61d2c" ], "x-ms-correlation-request-id": [ - "bea78c85-571d-4b1e-b1ff-05ca6298123b" + "0d9ac284-dd9b-49ed-b1b0-f96e4ec61d2c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060002Z:bea78c85-571d-4b1e-b1ff-05ca6298123b" + "WESTUS:20150828T012616Z:0d9ac284-dd9b-49ed-b1b0-f96e4ec61d2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4768,17 +5209,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:00:02 GMT" + "Fri, 28 Aug 2015 01:26:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,16 +5245,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14983" ], "x-ms-request-id": [ - "9b530536-06a6-4ad6-bed9-c780ef18d192" + "18021780-85aa-4fb6-abdd-4c6822d6fc3c" ], "x-ms-correlation-request-id": [ - "9b530536-06a6-4ad6-bed9-c780ef18d192" + "18021780-85aa-4fb6-abdd-4c6822d6fc3c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060018Z:9b530536-06a6-4ad6-bed9-c780ef18d192" + "WESTUS:20150828T012631Z:18021780-85aa-4fb6-abdd-4c6822d6fc3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4822,17 +5263,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:00:18 GMT" + "Fri, 28 Aug 2015 01:26:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4858,16 +5299,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14982" ], "x-ms-request-id": [ - "3d2ba3ec-394f-4d06-b8a6-a30d855c8a89" + "eb7907af-0dc9-483b-b69d-814e8c12cfde" ], "x-ms-correlation-request-id": [ - "3d2ba3ec-394f-4d06-b8a6-a30d855c8a89" + "eb7907af-0dc9-483b-b69d-814e8c12cfde" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060033Z:3d2ba3ec-394f-4d06-b8a6-a30d855c8a89" + "WESTUS:20150828T012646Z:eb7907af-0dc9-483b-b69d-814e8c12cfde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4876,17 +5317,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:00:32 GMT" + "Fri, 28 Aug 2015 01:26:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4912,16 +5353,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14981" ], "x-ms-request-id": [ - "04679d25-8ba3-4950-b40c-6c017dc3ed5d" + "b8d3c03c-2574-49d8-8ef4-9333a5d01f0a" ], "x-ms-correlation-request-id": [ - "04679d25-8ba3-4950-b40c-6c017dc3ed5d" + "b8d3c03c-2574-49d8-8ef4-9333a5d01f0a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060048Z:04679d25-8ba3-4950-b40c-6c017dc3ed5d" + "WESTUS:20150828T012701Z:b8d3c03c-2574-49d8-8ef4-9333a5d01f0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4930,17 +5371,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:00:47 GMT" + "Fri, 28 Aug 2015 01:27:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4966,16 +5407,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14980" ], "x-ms-request-id": [ - "e724a885-9010-43db-a6d1-32aa701f4fc9" + "9bc163eb-1698-4551-b440-9c012017ff67" ], "x-ms-correlation-request-id": [ - "e724a885-9010-43db-a6d1-32aa701f4fc9" + "9bc163eb-1698-4551-b440-9c012017ff67" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060103Z:e724a885-9010-43db-a6d1-32aa701f4fc9" + "WESTUS:20150828T012717Z:9bc163eb-1698-4551-b440-9c012017ff67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4984,17 +5425,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:01:03 GMT" + "Fri, 28 Aug 2015 01:27:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5020,16 +5461,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14979" ], "x-ms-request-id": [ - "cd31ae14-3d26-47f0-8fca-e4bd24e60406" + "d88b499c-fa7f-4ffa-afdb-0a79b5a7f955" ], "x-ms-correlation-request-id": [ - "cd31ae14-3d26-47f0-8fca-e4bd24e60406" + "d88b499c-fa7f-4ffa-afdb-0a79b5a7f955" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060118Z:cd31ae14-3d26-47f0-8fca-e4bd24e60406" + "WESTUS:20150828T012732Z:d88b499c-fa7f-4ffa-afdb-0a79b5a7f955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5038,17 +5479,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:01:18 GMT" + "Fri, 28 Aug 2015 01:27:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5074,16 +5515,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14978" ], "x-ms-request-id": [ - "f31c9da4-3728-448e-985a-ffdf85f71ee9" + "41e11161-5684-4c78-b11f-7129753dde34" ], "x-ms-correlation-request-id": [ - "f31c9da4-3728-448e-985a-ffdf85f71ee9" + "41e11161-5684-4c78-b11f-7129753dde34" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060133Z:f31c9da4-3728-448e-985a-ffdf85f71ee9" + "WESTUS:20150828T012747Z:41e11161-5684-4c78-b11f-7129753dde34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5092,17 +5533,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:01:33 GMT" + "Fri, 28 Aug 2015 01:27:46 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5128,16 +5569,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14974" ], "x-ms-request-id": [ - "738b711b-a1df-45a2-afa0-aa552a9bdc39" + "3132ab2a-f7b9-4f7e-b711-a8699957cfd9" ], "x-ms-correlation-request-id": [ - "738b711b-a1df-45a2-afa0-aa552a9bdc39" + "3132ab2a-f7b9-4f7e-b711-a8699957cfd9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060149Z:738b711b-a1df-45a2-afa0-aa552a9bdc39" + "WESTUS:20150828T012802Z:3132ab2a-f7b9-4f7e-b711-a8699957cfd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5146,17 +5587,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:01:48 GMT" + "Fri, 28 Aug 2015 01:28:02 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5182,16 +5623,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14973" ], "x-ms-request-id": [ - "478084f0-42fa-4b1e-9744-8bd6a6c902d0" + "86ba859e-3316-45ef-9561-06e850cdfa9b" ], "x-ms-correlation-request-id": [ - "478084f0-42fa-4b1e-9744-8bd6a6c902d0" + "86ba859e-3316-45ef-9561-06e850cdfa9b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060204Z:478084f0-42fa-4b1e-9744-8bd6a6c902d0" + "WESTUS:20150828T012817Z:86ba859e-3316-45ef-9561-06e850cdfa9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5200,17 +5641,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:02:03 GMT" + "Fri, 28 Aug 2015 01:28:17 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5236,16 +5677,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14972" ], "x-ms-request-id": [ - "60297378-7e68-4ada-93f2-66d99a6c81e7" + "fadcb74d-fc96-4366-b397-6ce11c0b0300" ], "x-ms-correlation-request-id": [ - "60297378-7e68-4ada-93f2-66d99a6c81e7" + "fadcb74d-fc96-4366-b397-6ce11c0b0300" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060219Z:60297378-7e68-4ada-93f2-66d99a6c81e7" + "WESTUS:20150828T012832Z:fadcb74d-fc96-4366-b397-6ce11c0b0300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5254,17 +5695,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:02:18 GMT" + "Fri, 28 Aug 2015 01:28:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5290,16 +5731,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14971" ], "x-ms-request-id": [ - "cb4f6a8b-3067-46bc-8e57-60db461506f1" + "edf254e6-95ed-4765-a59e-b434652bb749" ], "x-ms-correlation-request-id": [ - "cb4f6a8b-3067-46bc-8e57-60db461506f1" + "edf254e6-95ed-4765-a59e-b434652bb749" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060234Z:cb4f6a8b-3067-46bc-8e57-60db461506f1" + "WESTUS:20150828T012847Z:edf254e6-95ed-4765-a59e-b434652bb749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5308,17 +5749,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:02:33 GMT" + "Fri, 28 Aug 2015 01:28:47 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5344,16 +5785,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14968" ], "x-ms-request-id": [ - "80725dba-4706-4185-815f-9a71b1b42148" + "409266a7-e139-4d17-963a-b585df4e4554" ], "x-ms-correlation-request-id": [ - "80725dba-4706-4185-815f-9a71b1b42148" + "409266a7-e139-4d17-963a-b585df4e4554" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060249Z:80725dba-4706-4185-815f-9a71b1b42148" + "WESTUS:20150828T012902Z:409266a7-e139-4d17-963a-b585df4e4554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5362,17 +5803,17 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:02:49 GMT" + "Fri, 28 Aug 2015 01:29:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjI0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpJMExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5394,17 +5835,287 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14966" + ], + "x-ms-request-id": [ + "5e4a2da6-2e20-4eff-bab9-63224bfda308" + ], + "x-ms-correlation-request-id": [ + "5e4a2da6-2e20-4eff-bab9-63224bfda308" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T012917Z:5e4a2da6-2e20-4eff-bab9-63224bfda308" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 01:29:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14964" + ], + "x-ms-request-id": [ + "17839960-80be-4898-bef0-4a8347162828" + ], + "x-ms-correlation-request-id": [ + "17839960-80be-4898-bef0-4a8347162828" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T012932Z:17839960-80be-4898-bef0-4a8347162828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 01:29:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14962" + ], + "x-ms-request-id": [ + "a71444c7-8bcc-46e8-bf9c-6b662805b37e" + ], + "x-ms-correlation-request-id": [ + "a71444c7-8bcc-46e8-bf9c-6b662805b37e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T012947Z:a71444c7-8bcc-46e8-bf9c-6b662805b37e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 01:29:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14964" + ], + "x-ms-request-id": [ + "4ef7f9d7-6e30-4070-9f07-ca8a48f337bb" + ], + "x-ms-correlation-request-id": [ + "4ef7f9d7-6e30-4070-9f07-ca8a48f337bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T013002Z:4ef7f9d7-6e30-4070-9f07-ca8a48f337bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 01:30:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14962" + ], + "x-ms-request-id": [ + "55d527c2-1218-4420-bc33-afec00e617e3" + ], + "x-ms-correlation-request-id": [ + "55d527c2-1218-4420-bc33-afec00e617e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150828T013017Z:55d527c2-1218-4420-bc33-afec00e617e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 28 Aug 2015 01:30:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM5Njg2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk01TmpnMkxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14960" ], "x-ms-request-id": [ - "e31d422b-8e27-4578-b913-5cd34b3a311c" + "0e9fc829-2187-4a2a-8a2c-bac440734d61" ], "x-ms-correlation-request-id": [ - "e31d422b-8e27-4578-b913-5cd34b3a311c" + "0e9fc829-2187-4a2a-8a2c-bac440734d61" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T060304Z:e31d422b-8e27-4578-b913-5cd34b3a311c" + "WESTUS:20150828T013033Z:0e9fc829-2187-4a2a-8a2c-bac440734d61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5413,7 +6124,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:03:04 GMT" + "Fri, 28 Aug 2015 01:30:32 GMT" ] }, "StatusCode": 200 @@ -5421,7 +6132,7 @@ ], "Names": { "Test-VirtualMachineAccessExtension": [ - "crptestps1224" + "crptestps9686" ] }, "Variables": { diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json index 5a2cbb5a2f0a..ed384c1ab82d 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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\": \"operations\",\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/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\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 \"West 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 \"Japan East\",\r\n \"Japan West\"\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-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\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-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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\": \"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 \"resourceType\": \"automatedExportSettings\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\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\": \"checkTrafficManagerNameAvailability\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West US\",\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 \"Central US\",\r\n \"North Europe\"\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\": \"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\": \"checkNameAvailability\",\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\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"deploymenttemplates\",\r\n \"locations\": [],\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\": \"operations\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\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-05-01-preview\",\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-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\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 \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North 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 \"Australia East\"\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 \"Australia East\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\"\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 \"Australia East\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\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 \"Australia Southeast\",\r\n \"Australia East\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\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-08-01\",\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\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-08-01\",\r\n \"2015-03-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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\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/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\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-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\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-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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\": \"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 \"resourceType\": \"automatedExportSettings\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\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\": \"checkTrafficManagerNameAvailability\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West US\",\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 \"Central US\",\r\n \"North Europe\"\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\": \"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\": \"checkNameAvailability\",\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\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"deploymenttemplates\",\r\n \"locations\": [],\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\": \"operations\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\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-05-01-preview\",\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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\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 \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North 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 \"Australia East\"\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 \"Australia East\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\"\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 \"Australia East\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\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 \"Australia Southeast\",\r\n \"Australia East\",\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}", "ResponseHeaders": { "Content-Length": [ - "68651" + "70706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,13 +28,13 @@ "14999" ], "x-ms-request-id": [ - "e2212ef1-d152-4226-ab4c-4db2599830c0" + "8dc8e1bd-94ec-4b53-86b0-4807427c8cd4" ], "x-ms-correlation-request-id": [ - "e2212ef1-d152-4226-ab4c-4db2599830c0" + "8dc8e1bd-94ec-4b53-86b0-4807427c8cd4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063019Z:e2212ef1-d152-4226-ab4c-4db2599830c0" + "WESTUS:20150828T214442Z:8dc8e1bd-94ec-4b53-86b0-4807427c8cd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,7 +43,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 06:30:19 GMT" + "Fri, 28 Aug 2015 21:44:41 GMT" ] }, "StatusCode": 200 @@ -58,10 +58,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCLinuxAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCLinuxAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "57359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -76,7 +76,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9eaae10f-c224-4f3b-933d-60758545c6af" + "8c220782-2925-4b18-b7c0-57081c8729b1" ], "Cache-Control": [ "no-cache" @@ -89,13 +89,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "2b43add6-d541-45c6-9282-fa3a50cf82a5" + "48ede020-18cd-4afd-aa85-22e1515e6c6c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063020Z:2b43add6-d541-45c6-9282-fa3a50cf82a5" + "WESTUS:20150828T214443Z:48ede020-18cd-4afd-aa85-22e1515e6c6c" ], "Date": [ - "Thu, 13 Aug 2015 06:30:20 GMT" + "Fri, 28 Aug 2015 21:44:42 GMT" ] }, "StatusCode": 200 @@ -110,10 +110,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCLinuxAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCLinuxAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "57359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -128,7 +128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e0fb113-bced-49b8-bb0f-2f2c0cda572c" + "09597859-2a57-44e6-9e91-731095d07bbd" ], "Cache-Control": [ "no-cache" @@ -141,13 +141,13 @@ "14994" ], "x-ms-correlation-request-id": [ - "1f7fa1bc-14d2-491e-b364-4fd60bee93af" + "7e7faeb3-04a6-4039-acd7-67f1278310c2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063023Z:1f7fa1bc-14d2-491e-b364-4fd60bee93af" + "WESTUS:20150828T214444Z:7e7faeb3-04a6-4039-acd7-67f1278310c2" ], "Date": [ - "Thu, 13 Aug 2015 06:30:23 GMT" + "Fri, 28 Aug 2015 21:44:43 GMT" ] }, "StatusCode": 200 @@ -162,10 +162,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCLinuxAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCLinuxAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "57359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,7 +180,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "881b5140-2c46-40ad-847b-609ce29215a6" + "a17b682a-5e02-4be5-9cc5-fff704419017" ], "Cache-Control": [ "no-cache" @@ -193,13 +193,13 @@ "14993" ], "x-ms-correlation-request-id": [ - "fe1bfb31-b988-40bc-9cf4-a694a79b48cd" + "08e2f8c9-6aaf-44a7-b95a-ec28f5c31de3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063024Z:fe1bfb31-b988-40bc-9cf4-a694a79b48cd" + "WESTUS:20150828T214444Z:08e2f8c9-6aaf-44a7-b95a-ec28f5c31de3" ], "Date": [ - "Thu, 13 Aug 2015 06:30:23 GMT" + "Fri, 28 Aug 2015 21:44:43 GMT" ] }, "StatusCode": 200 @@ -214,10 +214,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCLinuxAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCLinuxAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "57359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,7 +232,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0cb5141-1a95-4879-b063-6ba7ad665c7d" + "efadcc5e-49e2-4db0-87fb-1e9c98b240a3" ], "Cache-Control": [ "no-cache" @@ -245,13 +245,13 @@ "14992" ], "x-ms-correlation-request-id": [ - "8712b5ff-f8ed-46b8-bec0-b988acdaef8a" + "8cb42c81-0537-4546-90ff-4a85c0c22b94" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063024Z:8712b5ff-f8ed-46b8-bec0-b988acdaef8a" + "WESTUS:20150828T214444Z:8cb42c81-0537-4546-90ff-4a85c0c22b94" ], "Date": [ - "Thu, 13 Aug 2015 06:30:24 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -266,10 +266,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCLinuxAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCLinuxAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "57359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -284,7 +284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d02b028b-fdcd-4c81-8196-a8e952df0603" + "62194685-206a-4bcf-89ea-f3dbae45edee" ], "Cache-Control": [ "no-cache" @@ -297,13 +297,13 @@ "14990" ], "x-ms-correlation-request-id": [ - "23372cf5-8eb1-4b23-8d8b-e6b31bd84b99" + "dcb41a56-e6ee-46ac-9ecd-98123af5ff56" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063025Z:23372cf5-8eb1-4b23-8d8b-e6b31bd84b99" + "WESTUS:20150828T214445Z:dcb41a56-e6ee-46ac-9ecd-98123af5ff56" ], "Date": [ - "Thu, 13 Aug 2015 06:30:25 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -318,10 +318,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCLinuxAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCLinuxAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "55135" + "57359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -336,7 +336,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f23968ba-e90e-4308-b867-9b0ad6fd793b" + "8b73737f-5fbb-476e-9c32-01141de350b7" ], "Cache-Control": [ "no-cache" @@ -349,13 +349,13 @@ "14987" ], "x-ms-correlation-request-id": [ - "4f35aafc-f0e6-4fe4-91f4-2296424187cf" + "1553e6b9-1dae-4b81-9acc-b5a88c2c4b52" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063026Z:4f35aafc-f0e6-4fe4-91f4-2296424187cf" + "WESTUS:20150828T214445Z:1553e6b9-1dae-4b81-9acc-b5a88c2c4b52" ], "Date": [ - "Thu, 13 Aug 2015 06:30:26 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -388,7 +388,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d82b53a-7d4a-4cb6-a7e6-5ede23be18e6" + "73ad6119-64a5-4192-8bb9-fdcd0a49cc56" ], "Cache-Control": [ "no-cache" @@ -401,13 +401,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "b8171890-50f0-4dd6-bbfc-c25b5e843329" + "a7e05928-6c02-4458-9101-213a297e0eb9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063021Z:b8171890-50f0-4dd6-bbfc-c25b5e843329" + "WESTUS:20150828T214443Z:a7e05928-6c02-4458-9101-213a297e0eb9" ], "Date": [ - "Thu, 13 Aug 2015 06:30:21 GMT" + "Fri, 28 Aug 2015 21:44:42 GMT" ] }, "StatusCode": 200 @@ -440,7 +440,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e0d1085-0555-48d7-a80f-59ee3532bd93" + "216d9698-5ad5-4569-bcbd-3bd13d1beb72" ], "Cache-Control": [ "no-cache" @@ -453,13 +453,13 @@ "14991" ], "x-ms-correlation-request-id": [ - "0e6bd051-58e4-4bec-a648-1f8353b847e1" + "8e449dd2-7499-4049-8f49-84332ad698b5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063024Z:0e6bd051-58e4-4bec-a648-1f8353b847e1" + "WESTUS:20150828T214445Z:8e449dd2-7499-4049-8f49-84332ad698b5" ], "Date": [ - "Thu, 13 Aug 2015 06:30:24 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -492,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97806cca-de79-41c4-b62c-834bcfe75a27" + "67a7ec05-fb13-49a9-9fec-dc470cabef14" ], "Cache-Control": [ "no-cache" @@ -505,13 +505,13 @@ "14989" ], "x-ms-correlation-request-id": [ - "5b05b66e-c047-40ff-9d49-4f63175b2016" + "2431bbad-3b80-4449-894f-1c2e95b871d5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063025Z:5b05b66e-c047-40ff-9d49-4f63175b2016" + "WESTUS:20150828T214445Z:2431bbad-3b80-4449-894f-1c2e95b871d5" ], "Date": [ - "Thu, 13 Aug 2015 06:30:25 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -544,7 +544,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee58d65e-9e96-4210-ac67-559cbff5a979" + "38b6e60f-0adf-46a4-89b3-1d1d2cba89bf" ], "Cache-Control": [ "no-cache" @@ -557,13 +557,13 @@ "14986" ], "x-ms-correlation-request-id": [ - "2e36eb0c-f14d-4625-9c02-96a9575d5563" + "b5dcc756-d51a-4b7e-bc7a-361ad725091f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063026Z:2e36eb0c-f14d-4625-9c02-96a9575d5563" + "WESTUS:20150828T214445Z:b5dcc756-d51a-4b7e-bc7a-361ad725091f" ], "Date": [ - "Thu, 13 Aug 2015 06:30:26 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -578,10 +578,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1799" + "1475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -596,7 +596,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4551685d-d94a-4fc1-9530-0e49f4ae5d9f" + "2cd1d1bf-3f52-4d18-95b6-86572f617fe0" ], "Cache-Control": [ "no-cache" @@ -609,13 +609,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "a0c41fba-7ad7-4dd3-9ee7-ee3d015fd5a3" + "69d2bb2b-3db0-44fc-81f8-c5a419ca056a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063022Z:a0c41fba-7ad7-4dd3-9ee7-ee3d015fd5a3" + "WESTUS:20150828T214443Z:69d2bb2b-3db0-44fc-81f8-c5a419ca056a" ], "Date": [ - "Thu, 13 Aug 2015 06:30:21 GMT" + "Fri, 28 Aug 2015 21:44:42 GMT" ] }, "StatusCode": 200 @@ -630,10 +630,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1799" + "1475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,7 +648,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa70d75d-057b-4ac0-9c59-6992a418d0df" + "9c539333-8a70-484f-a167-7300d2269863" ], "Cache-Control": [ "no-cache" @@ -661,13 +661,13 @@ "14988" ], "x-ms-correlation-request-id": [ - "e6e25d37-2dc2-4a81-af75-2d2f1ed4af4f" + "6b0f79c0-394e-4b73-932d-1a18a038a736" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063026Z:e6e25d37-2dc2-4a81-af75-2d2f1ed4af4f" + "WESTUS:20150828T214445Z:6b0f79c0-394e-4b73-932d-1a18a038a736" ], "Date": [ - "Thu, 13 Aug 2015 06:30:25 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -682,10 +682,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1799" + "1475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -700,7 +700,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53fa5ffa-d838-47fb-b3da-431a1704a0fa" + "abfd630a-173c-4476-918b-1964986dda0f" ], "Cache-Control": [ "no-cache" @@ -713,13 +713,13 @@ "14985" ], "x-ms-correlation-request-id": [ - "5b6e6f73-29cb-42af-a2b0-f9d2674c14d8" + "9b4e81cb-3eda-4422-816d-75fbd6341dea" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063027Z:5b6e6f73-29cb-42af-a2b0-f9d2674c14d8" + "WESTUS:20150828T214445Z:9b4e81cb-3eda-4422-816d-75fbd6341dea" ], "Date": [ - "Thu, 13 Aug 2015 06:30:27 GMT" + "Fri, 28 Aug 2015 21:44:44 GMT" ] }, "StatusCode": 200 @@ -752,7 +752,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9fdb4a8-ab2b-4c4d-ade2-5feaf29efba9" + "64d362fa-5e83-4279-9f02-0f4995b52856" ], "Cache-Control": [ "no-cache" @@ -765,13 +765,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "86f4288a-5437-4f7d-8f44-7a9cb05c9478" + "bc70d5ff-57cc-46f4-9a31-40562a0754d4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063022Z:86f4288a-5437-4f7d-8f44-7a9cb05c9478" + "WESTUS:20150828T214443Z:bc70d5ff-57cc-46f4-9a31-40562a0754d4" ], "Date": [ - "Thu, 13 Aug 2015 06:30:22 GMT" + "Fri, 28 Aug 2015 21:44:43 GMT" ] }, "StatusCode": 200 @@ -804,7 +804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "668b3161-4b3f-43aa-875c-79cfca6a40c0" + "be9f8d70-f8e1-4ebb-a09e-4a4f6a9242bf" ], "Cache-Control": [ "no-cache" @@ -817,13 +817,13 @@ "14984" ], "x-ms-correlation-request-id": [ - "8a562118-48b2-4f88-bea9-872dcb9e740e" + "93e395ca-e7af-49ab-b761-b908f02b401c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063027Z:8a562118-48b2-4f88-bea9-872dcb9e740e" + "WESTUS:20150828T214446Z:93e395ca-e7af-49ab-b761-b908f02b401c" ], "Date": [ - "Thu, 13 Aug 2015 06:30:27 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 @@ -856,7 +856,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba42d05b-8b17-4cff-b8b1-ae9a17015ebf" + "f0b6f6aa-886b-44e7-be18-b91e9e833946" ], "Cache-Control": [ "no-cache" @@ -869,13 +869,13 @@ "14995" ], "x-ms-correlation-request-id": [ - "5ea1b133-92c8-4ac6-9bd0-c7c4ac571a0f" + "ab7a5bff-c65b-4884-b822-9c10509eab9b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063022Z:5ea1b133-92c8-4ac6-9bd0-c7c4ac571a0f" + "WESTUS:20150828T214443Z:ab7a5bff-c65b-4884-b822-9c10509eab9b" ], "Date": [ - "Thu, 13 Aug 2015 06:30:22 GMT" + "Fri, 28 Aug 2015 21:44:43 GMT" ] }, "StatusCode": 200 @@ -908,7 +908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a88c87c7-de40-42ec-b137-4f4709dc44ef" + "9370e27c-3819-4089-a01e-d5c3ee042ded" ], "Cache-Control": [ "no-cache" @@ -918,16 +918,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14979" ], "x-ms-correlation-request-id": [ - "9858549a-3be1-48d0-98a9-5c4e1fefd8cf" + "27c12a5b-5f35-4e66-b476-0ceca1256222" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063029Z:9858549a-3be1-48d0-98a9-5c4e1fefd8cf" + "WESTUS:20150828T214446Z:27c12a5b-5f35-4e66-b476-0ceca1256222" ], "Date": [ - "Thu, 13 Aug 2015 06:30:29 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 @@ -960,7 +960,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a02ccda-b20b-420e-9de4-a34248fda453" + "bf0f109b-a1d1-4240-827b-de66270809cd" ], "Cache-Control": [ "no-cache" @@ -970,16 +970,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14978" ], "x-ms-correlation-request-id": [ - "c5f64cdf-d549-4ec0-b471-de9a46966aa6" + "2ef59cef-9666-443f-9405-daa4f25f64e6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063029Z:c5f64cdf-d549-4ec0-b471-de9a46966aa6" + "WESTUS:20150828T214446Z:2ef59cef-9666-443f-9405-daa4f25f64e6" ], "Date": [ - "Thu, 13 Aug 2015 06:30:29 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 @@ -1012,7 +1012,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c51407b-92f9-4a86-bbcd-f9e5c16e2e27" + "ea89e2a5-e9df-4693-b8ae-847bc6581c13" ], "Cache-Control": [ "no-cache" @@ -1025,13 +1025,13 @@ "14983" ], "x-ms-correlation-request-id": [ - "76582f9a-ab90-44f7-9ff4-6eb3dc95c5dc" + "fb7a7b83-9219-4eca-a8b6-8d300b3ee68e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063027Z:76582f9a-ab90-44f7-9ff4-6eb3dc95c5dc" + "WESTUS:20150828T214446Z:fb7a7b83-9219-4eca-a8b6-8d300b3ee68e" ], "Date": [ - "Thu, 13 Aug 2015 06:30:27 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 @@ -1064,7 +1064,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "667d2e3a-5878-42c0-a1d5-f2f8522671fc" + "7e6535c2-25ca-4dd5-a39e-dfc9ffc7fe6f" ], "Cache-Control": [ "no-cache" @@ -1077,13 +1077,13 @@ "14982" ], "x-ms-correlation-request-id": [ - "03429ca3-8566-4093-9f2c-fdeff914620e" + "e975fc0a-7fba-4bfc-b08c-d13e02477196" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063028Z:03429ca3-8566-4093-9f2c-fdeff914620e" + "WESTUS:20150828T214446Z:e975fc0a-7fba-4bfc-b08c-d13e02477196" ], "Date": [ - "Thu, 13 Aug 2015 06:30:27 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 @@ -1098,10 +1098,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"1.0.0006\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers/Versions/1.0.0006\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1116,7 +1116,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f0e3b3c-6aa8-47bb-853e-8da759458147" + "d84c00fe-54a0-4a9b-b71e-b61a1ccbfd16" ], "Cache-Control": [ "no-cache" @@ -1129,65 +1129,13 @@ "14981" ], "x-ms-correlation-request-id": [ - "c9fb9996-bba1-4288-9e22-052909c4d528" + "acceb32e-ad65-4878-a525-59790016934d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063028Z:c9fb9996-bba1-4288-9e22-052909c4d528" + "WESTUS:20150828T214446Z:acceb32e-ad65-4878-a525-59790016934d" ], "Date": [ - "Thu, 13 Aug 2015 06:30:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2016-Technical-Preview-with-Containers/versions?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDE2LVRlY2huaWNhbC1QcmV2aWV3LXdpdGgtQ29udGFpbmVycy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "47166d68-4264-4dc0-9394-4b669dbf84c1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "9aeed1ad-02e3-4de7-b6f9-5f2b793baf3f" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063028Z:9aeed1ad-02e3-4de7-b6f9-5f2b793baf3f" - ], - "Date": [ - "Thu, 13 Aug 2015 06:30:28 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 @@ -1202,10 +1150,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201505\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"5.0.20150819\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.20150819\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "313" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1220,7 +1168,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71ca55e4-4053-4c47-ba69-12336f13dd21" + "1994c7c4-689e-4036-b1ec-d8b77305e08a" ], "Cache-Control": [ "no-cache" @@ -1230,16 +1178,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14980" ], "x-ms-correlation-request-id": [ - "44f35f5d-7125-451f-9ceb-521517085ad7" + "b7bb81bf-4fe9-4220-b92d-be04c50c56fe" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T063029Z:44f35f5d-7125-451f-9ceb-521517085ad7" + "WESTUS:20150828T214446Z:b7bb81bf-4fe9-4220-b92d-be04c50c56fe" ], "Date": [ - "Thu, 13 Aug 2015 06:30:28 GMT" + "Fri, 28 Aug 2015 21:44:45 GMT" ] }, "StatusCode": 200 diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePiping.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePiping.json new file mode 100644 index 000000000000..0250eb3bb62d --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePiping.json @@ -0,0 +1,5333 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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\": \"operations\",\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/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"2015-06-01\",\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 \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\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 \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\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 \"West 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 \"Japan East\",\r\n \"Japan West\"\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-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"East US\",\r\n \"East US 2\",\r\n \"West 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 \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\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-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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\": \"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 \"resourceType\": \"automatedExportSettings\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorization\": {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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 US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\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 \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\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-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\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\": \"checkTrafficManagerNameAvailability\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"East US 2\",\r\n \"West US\",\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 \"Central US\",\r\n \"North Europe\"\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\": \"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\": \"checkNameAvailability\",\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\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"availableStacks\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\"\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\": \"deploymenttemplates\",\r\n \"locations\": [],\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\": \"operations\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-06-01\",\r\n \"2015-05-01-preview\",\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 \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\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-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"South Central US\"\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 \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\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-05-01-preview\",\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-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\",\r\n \"2015-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-tie-preview\",\r\n \"2015-02-01-test-preview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-p2-preview\",\r\n \"2015-02-01-p1-preview\",\r\n \"2015-02-01-int-preview\",\r\n \"2015-02-01-intp2-preview\",\r\n \"2015-02-01-intp1-preview\"\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 \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\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 \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\"\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\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 \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North 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 \"Australia East\"\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 \"Australia East\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\"\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 \"Australia East\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia East\",\r\n \"Australia Southeast\"\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/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 \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\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 \"Australia Southeast\",\r\n \"Australia East\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "69995" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "c585fcfe-144e-40e5-a4a2-8312e478cbfd" + ], + "x-ms-correlation-request-id": [ + "c585fcfe-144e-40e5-a4a2-8312e478cbfd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030242Z:c585fcfe-144e-40e5-a4a2-8312e478cbfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1253?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "105" + ], + "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": [ + "3f700ab9-cdee-403f-ada4-3b4eadf07db6" + ], + "x-ms-correlation-request-id": [ + "3f700ab9-cdee-403f-ada4-3b4eadf07db6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030242Z:3f700ab9-cdee-403f-ada4-3b4eadf07db6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1253?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNTM/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": [ + "14949" + ], + "x-ms-request-id": [ + "e4e1486c-3ad1-4156-8a4f-6f868733e1a0" + ], + "x-ms-correlation-request-id": [ + "e4e1486c-3ad1-4156-8a4f-6f868733e1a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031514Z:e4e1486c-3ad1-4156-8a4f-6f868733e1a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:13 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1253?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253\",\r\n \"name\": \"crptestps1253\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "7f58d1ae-6eb2-4526-b692-01226312e7be" + ], + "x-ms-correlation-request-id": [ + "7f58d1ae-6eb2-4526-b692-01226312e7be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030242Z:7f58d1ae-6eb2-4526-b692-01226312e7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "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": [ + "25c53d23-a692-4c49-bcb2-e4670a930d38" + ], + "x-ms-correlation-request-id": [ + "25c53d23-a692-4c49-bcb2-e4670a930d38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030242Z:25c53d23-a692-4c49-bcb2-e4670a930d38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1253/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "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:3cb3f263-0e43-44d2-93b3-23398bdb6580" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "02f0bb53-366f-46fa-939f-d3957f8cd92c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030243Z:02f0bb53-366f-46fa-939f-d3957f8cd92c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetcrptestps1253' under resource group 'crptestps1253' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6a384bf4-0560-4cfc-8d6c-2322a23f19d0" + ], + "x-ms-correlation-request-id": [ + "6a384bf4-0560-4cfc-8d6c-2322a23f19d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030244Z:6a384bf4-0560-4cfc-8d6c-2322a23f19d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:43 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253\",\r\n \"etag\": \"W/\\\"c994a0f0-df78-43c9-823c-9f08d75b676e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"52ea58f9-d00e-452b-b27d-144fba75f9e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\",\r\n \"etag\": \"W/\\\"c994a0f0-df78-43c9-823c-9f08d75b676e\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "1028" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98436185-781c-42df-921b-d6b02d85e186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c994a0f0-df78-43c9-823c-9f08d75b676e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "2805d4ed-8c89-4408-932a-61db9f3c804a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030255Z:2805d4ed-8c89-4408-932a-61db9f3c804a" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253\",\r\n \"etag\": \"W/\\\"c994a0f0-df78-43c9-823c-9f08d75b676e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"52ea58f9-d00e-452b-b27d-144fba75f9e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\",\r\n \"etag\": \"W/\\\"c994a0f0-df78-43c9-823c-9f08d75b676e\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "1028" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b4f5f310-558a-42a7-989f-817d56b67e10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"c994a0f0-df78-43c9-823c-9f08d75b676e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "452597fa-0431-4096-9fa2-0b61de2b0579" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030255Z:452597fa-0431-4096-9fa2-0b61de2b0579" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualnetworks/vnetcrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzMTI1Mz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "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 \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\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\": \"subnetcrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps1253\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "502" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253\",\r\n \"etag\": \"W/\\\"039af210-a816-4bd0-83ad-8d86b671845e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"52ea58f9-d00e-452b-b27d-144fba75f9e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\",\r\n \"etag\": \"W/\\\"039af210-a816-4bd0-83ad-8d86b671845e\\\"\",\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}", + "ResponseHeaders": { + "Content-Length": [ + "1026" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b65f4924-fe7d-4467-b9eb-f80116e1e0ff" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b65f4924-fe7d-4467-b9eb-f80116e1e0ff?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "55a7f071-ffaa-45c6-978a-44d254eac50a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030244Z:55a7f071-ffaa-45c6-978a-44d254eac50a" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b65f4924-fe7d-4467-b9eb-f80116e1e0ff?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY1ZjQ5MjQtZmU3ZC00NDY3LWI5ZWItZjgwMTE2ZTFlMGZmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d37c4450-d5ca-4046-8d51-6ec74231e087" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "627628c4-3bbd-4687-bdda-0bfe50e955d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030244Z:627628c4-3bbd-4687-bdda-0bfe50e955d7" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/b65f4924-fe7d-4467-b9eb-f80116e1e0ff?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY1ZjQ5MjQtZmU3ZC00NDY3LWI5ZWItZjgwMTE2ZTFlMGZmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f96015f5-7e1b-4354-b9d4-ae7d92366492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "e2c36f71-9086-4730-8063-67718de7523b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030254Z:e2c36f71-9086-4730-8063-67718de7523b" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pubipcrptestps1253' under resource group 'crptestps1253' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f7f75b7c-2e29-4429-8527-86b4776ae93e" + ], + "x-ms-correlation-request-id": [ + "f7f75b7c-2e29-4429-8527-86b4776ae93e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030255Z:f7f75b7c-2e29-4429-8527-86b4776ae93e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:54 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\",\r\n \"etag\": \"W/\\\"7db66643-0d6e-48ba-be00-f12dd145df5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b06d06aa-f74c-4691-8e47-50e976d56532\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1253\",\r\n \"fqdn\": \"pubipcrptestps1253.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "45fdbac4-2af3-4bd5-aba1-866b8c2fbf74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7db66643-0d6e-48ba-be00-f12dd145df5d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "7212fcff-acd9-4a66-a746-d046897d56cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030306Z:7212fcff-acd9-4a66-a746-d046897d56cb" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\",\r\n \"etag\": \"W/\\\"7db66643-0d6e-48ba-be00-f12dd145df5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b06d06aa-f74c-4691-8e47-50e976d56532\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1253\",\r\n \"fqdn\": \"pubipcrptestps1253.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f71489d5-01f4-48b2-b1b2-a816166664b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7db66643-0d6e-48ba-be00-f12dd145df5d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "caf9a351-77fe-4442-b569-400c0feea8e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030306Z:caf9a351-77fe-4442-b569-400c0feea8e9" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzMTI1My8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1253\"\r\n }\r\n },\r\n \"name\": \"pubipcrptestps1253\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "256" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubipcrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\",\r\n \"etag\": \"W/\\\"edb78d7f-3187-481b-a8f2-8a818a45fa26\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b06d06aa-f74c-4691-8e47-50e976d56532\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubipcrptestps1253\",\r\n \"fqdn\": \"pubipcrptestps1253.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "162bfa21-28fb-4df2-91a8-28fb7d621bad" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/162bfa21-28fb-4df2-91a8-28fb7d621bad?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "66b09ec3-37f2-4107-8f81-78cf368b6537" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030256Z:66b09ec3-37f2-4107-8f81-78cf368b6537" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:55 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/162bfa21-28fb-4df2-91a8-28fb7d621bad?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTYyYmZhMjEtMjhmYi00ZGYyLTkxYTgtMjhmYjdkNjIxYmFkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2abd6221-22cb-4046-8396-7fe0bdbb6956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "bf0e1fb7-e057-4573-8d21-f3a4cf2de384" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030256Z:bf0e1fb7-e057-4573-8d21-f3a4cf2de384" + ], + "Date": [ + "Tue, 25 Aug 2015 03:02:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/162bfa21-28fb-4df2-91a8-28fb7d621bad?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTYyYmZhMjEtMjhmYi00ZGYyLTkxYTgtMjhmYjdkNjIxYmFkP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5560169-67d2-4947-86ed-460024582508" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "80f82881-7354-4ee7-b3b5-1c59469e7fae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030306Z:80f82881-7354-4ee7-b3b5-1c59469e7fae" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/niccrptestps1253' under resource group 'crptestps1253' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5ff30f2a-e0d9-44a5-938a-443c5bd8d2e6" + ], + "x-ms-correlation-request-id": [ + "5ff30f2a-e0d9-44a5-938a-443c5bd8d2e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030306Z:5ff30f2a-e0d9-44a5-938a-443c5bd8d2e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\",\r\n \"etag\": \"W/\\\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ed19198-0998-443f-92d6-b62dc0e02753\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "521495c6-a0be-4e9f-94c5-c42f691fb003" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "2386a497-1137-456f-b82e-9953f871185f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030307Z:2386a497-1137-456f-b82e-9953f871185f" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\",\r\n \"etag\": \"W/\\\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ed19198-0998-443f-92d6-b62dc0e02753\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "efd0d9e6-3bbf-499d-b734-ea40612440fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "bc9d8e7c-5e60-473c-9b8e-8ed4d5c4ff91" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030307Z:bc9d8e7c-5e60-473c-9b8e-8ed4d5c4ff91" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"name\": \"niccrptestps1253\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "897" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"niccrptestps1253\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\",\r\n \"etag\": \"W/\\\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ed19198-0998-443f-92d6-b62dc0e02753\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7dcc622c-ca97-45bf-b55b-bd0ac8795570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps1253\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/virtualNetworks/vnetcrptestps1253/subnets/subnetcrptestps1253\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9c3c7d74-0d4c-4aa5-8553-654d502eaf93" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/9c3c7d74-0d4c-4aa5-8553-654d502eaf93?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "1b5d202d-ba06-441f-8280-94c83e8a3c0d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030306Z:1b5d202d-ba06-441f-8280-94c83e8a3c0d" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/westus/operations/9c3c7d74-0d4c-4aa5-8553-654d502eaf93?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWMzYzdkNzQtMGQ0Yy00YWE1LTg1NTMtNjU0ZDUwMmVhZjkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dc1640ae-0472-4093-98c6-f9da7367cd78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "305ad5c9-ba6e-4b04-81d7-d0680b78a76a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030307Z:305ad5c9-ba6e-4b04-81d7-d0680b78a76a" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Storage/storageAccounts/stocrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "63d805ed-979c-41a1-9e3c-f15dd9567524" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "613b2729-1e20-4b8a-aaa1-44fa37e1d9eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/613b2729-1e20-4b8a-aaa1-44fa37e1d9eb?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "95c75e63-6a69-4d7f-9d91-9aadf126037b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030308Z:95c75e63-6a69-4d7f-9d91-9aadf126037b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:08 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/613b2729-1e20-4b8a-aaa1-44fa37e1d9eb?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzYxM2IyNzI5LTFlMjAtNGI4YS1hYWExLTQ0ZmEzN2UxZDllYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13fa0890-4deb-4232-8477-904ac1798e2e" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "4b4b4eb1-6aff-4dd7-aac8-035e37acf797" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/613b2729-1e20-4b8a-aaa1-44fa37e1d9eb?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "0516ebf9-0495-4a7d-a9af-80ef1b2e29e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030309Z:0516ebf9-0495-4a7d-a9af-80ef1b2e29e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:09 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/613b2729-1e20-4b8a-aaa1-44fa37e1d9eb?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzYxM2IyNzI5LTFlMjAtNGI4YS1hYWExLTQ0ZmEzN2UxZDllYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f643acc7-0d90-441c-9677-33a4bd172406" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "66" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b46b3ead-96c8-433c-97e9-80c1188f153f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "f72a4c4c-d82e-4d22-82c7-20362d3df1d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030334Z:f72a4c4c-d82e-4d22-82c7-20362d3df1d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Storage/storageAccounts/stocrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7aae0ec2-73ec-4700-be2e-5df5da6ce321" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Storage/storageAccounts/stocrptestps1253\",\r\n \"name\": \"stocrptestps1253\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1253.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1253.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1253.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-25T03:03:07.9395609Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3e11646-5f19-4218-b7f4-e680d7d4579c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "7666347b-e82b-4c26-9d71-68eb17c5bd16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030334Z:7666347b-e82b-4c26-9d71-68eb17c5bd16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Storage/storageAccounts/stocrptestps1253?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9jcnB0ZXN0cHMxMjUzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c30254f-7d20-4de1-97a9-8bc3adec884c" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Storage/storageAccounts/stocrptestps1253\",\r\n \"name\": \"stocrptestps1253\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stocrptestps1253.blob.core.windows.net/\",\r\n \"queue\": \"https://stocrptestps1253.queue.core.windows.net/\",\r\n \"table\": \"https://stocrptestps1253.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-08-25T03:03:07.9395609Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "62f4e828-f468-4e00-a0fd-90767e26bd23" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "87892b96-5905-42b2-bb6f-9862a1f06c0f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030334Z:87892b96-5905-42b2-bb6f-9862a1f06c0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appcitoinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appcitoinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"apprenda\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/apprenda\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Bitnami\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Bitnami\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Confer.TestSensor\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Confer.TestSensor\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"cortical-io\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/cortical-io\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ESET.FileSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ESET.FileSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"LocalTest.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/LocalTest.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.Security.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.Security.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Install\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Install\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Internal.Telemetry\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Internal.Telemetry\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Powershell.Wmf\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Powershell.Wmf\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsGP\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsGP\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test2\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.DeepSecurity.Test2\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.TestExt\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.TestExt\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Vormetric.VormetricTransparentEncryption\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/Vormetric.VormetricTransparentEncryption\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/zoomdata\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "55853" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2221e7f5-1ed9-4954-b2ef-b060a8c96ba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "a5e68181-ef6b-463e-85b6-0209a4838609" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030335Z:a5e68181-ef6b-463e-85b6-0209a4838609" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "258" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aca59819-889d-418f-951e-52c503bc3f2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "99fbda3b-1ecb-4042-9ddb-842563abc1d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030335Z:99fbda3b-1ecb-4042-9ddb-842563abc1d1" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "249809e9-5c94-46d8-b6a5-77204360683f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "db4a5d80-8211-47cb-bd3a-6a0c9b8536d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030336Z:db4a5d80-8211-47cb-bd3a-6a0c9b8536d0" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201506\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.20150726\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "874" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "57445e17-a9c9-4f66-b542-388c61f912c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "28ca69a1-4e98-4817-b3fa-a8ce2c9574e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030336Z:28ca69a1-4e98-4817-b3fa-a8ce2c9574e4" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201505?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0V2luZG93c1NlcnZlci9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXIvc2t1cy8yMDA4LVIyLVNQMS92ZXJzaW9ucy8yLjAuMjAxNTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"2.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201505\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "296c4c9a-e270-4345-903a-91e4708070e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "31395725-3f39-4630-8b68-60507f99fc66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030336Z:31395725-3f39-4630-8b68-60507f99fc66" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123crptestps1253\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1253\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1722" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1952" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "eb1d412c-a382-4e02-8dc8-c7e3f9651298" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "c8d9f078-7122-492e-a817-536b90cdd740" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030337Z:c8d9f078-7122-492e-a817-536b90cdd740" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmcrptestps1253\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "2098" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2263" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/856a9451-f8bb-4946-abd4-c1b2273a9d61?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "856a9451-f8bb-4946-abd4-c1b2273a9d61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4f72a080-2c75-4504-a84c-6348b22b0f31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031111Z:4f72a080-2c75-4504-a84c-6348b22b0f31" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "88abb279-a84d-451f-a563-fc367536bf68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "a3397ec3-58a7-4085-a503-375c76495e3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030337Z:a3397ec3-58a7-4085-a503-375c76495e3e" + ], + "Date": [ + "Tue, 25 Aug 2015 03:03:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "bc940594-6a1b-44a8-af64-1b75d742c818" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "5e9f99ca-8d2b-4296-8ca2-5096d6a7c1db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030407Z:5e9f99ca-8d2b-4296-8ca2-5096d6a7c1db" + ], + "Date": [ + "Tue, 25 Aug 2015 03:04:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "855a2184-e816-4509-8f4e-c7495886ac3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "4eef10d4-d7a8-445a-9c60-4e0822efee3c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030438Z:4eef10d4-d7a8-445a-9c60-4e0822efee3c" + ], + "Date": [ + "Tue, 25 Aug 2015 03:04:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "a2e85bf9-71d0-4821-a919-965edd9d2099" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "14392ff2-6916-4a46-a852-457a216c0350" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030508Z:14392ff2-6916-4a46-a852-457a216c0350" + ], + "Date": [ + "Tue, 25 Aug 2015 03:05:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "b1a799bc-fde5-4091-bfe1-c65afd4f93d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "c0a4f05d-7091-4754-b4f1-af1a2f56b185" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030538Z:c0a4f05d-7091-4754-b4f1-af1a2f56b185" + ], + "Date": [ + "Tue, 25 Aug 2015 03:05:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "7c76bd28-6068-4360-a1b9-36d61f0c23e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "201ec804-28a9-46da-a3f7-7a51c8fad0ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030608Z:201ec804-28a9-46da-a3f7-7a51c8fad0ea" + ], + "Date": [ + "Tue, 25 Aug 2015 03:06:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "d18d7c6f-3762-4fc2-a09b-1a8d6b99e201" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "898e9ec4-08bd-4eb4-87e2-5e9e9933f6d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030638Z:898e9ec4-08bd-4eb4-87e2-5e9e9933f6d7" + ], + "Date": [ + "Tue, 25 Aug 2015 03:06:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "4184ba56-9f3c-4dea-a533-f44281a5783e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "7157d149-6252-41f4-ab09-23287797fa41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030708Z:7157d149-6252-41f4-ab09-23287797fa41" + ], + "Date": [ + "Tue, 25 Aug 2015 03:07:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "dffca997-2791-48fa-a047-fb624c01b784" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "fbbc775a-a2ab-4d0b-84b5-25de8af511df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030738Z:fbbc775a-a2ab-4d0b-84b5-25de8af511df" + ], + "Date": [ + "Tue, 25 Aug 2015 03:07:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "c622ceff-94d8-4b52-9aa9-14f7015eedeb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "02506474-90ea-4d4c-b28d-b1fece9062bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030808Z:02506474-90ea-4d4c-b28d-b1fece9062bf" + ], + "Date": [ + "Tue, 25 Aug 2015 03:08:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "b27d42de-9ef6-4c2f-8ef8-d12232642e6e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "5dc6247c-cee3-4836-bd71-aded4742d5ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030838Z:5dc6247c-cee3-4836-bd71-aded4742d5ee" + ], + "Date": [ + "Tue, 25 Aug 2015 03:08:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "afe50d7c-f1e6-4845-baec-bd514c3bf2d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "02de404e-7441-416c-88a9-7c06999613d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030908Z:02de404e-7441-416c-88a9-7c06999613d4" + ], + "Date": [ + "Tue, 25 Aug 2015 03:09:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/eb1d412c-a382-4e02-8dc8-c7e3f9651298?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZDQxMmMtYTM4Mi00ZTAyLThkYzgtYzdlM2Y5NjUxMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb1d412c-a382-4e02-8dc8-c7e3f9651298\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:03:36.667654-07:00\",\r\n \"endTime\": \"2015-08-24T20:09:18.7239206-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "91e2a3c5-425b-410e-9ce8-caea9bd7bd8b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "31bb435e-7ad8-457d-86b6-9702df472013" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030939Z:31bb435e-7ad8-457d-86b6-9702df472013" + ], + "Date": [ + "Tue, 25 Aug 2015 03:09:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "ace411bd-1ba2-459a-8acf-69ba9c6b90c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "1914d184-320e-4d8f-be79-3293c29550c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030939Z:1914d184-320e-4d8f-be79-3293c29550c8" + ], + "Date": [ + "Tue, 25 Aug 2015 03:09:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "6f08138f-4090-47f8-847e-aaf26d52408b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "1f7d6080-f7fe-4d94-ada1-a5f3e16e5960" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031111Z:1f7d6080-f7fe-4d94-ada1-a5f3e16e5960" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "7a7f54e7-8f6f-468f-b18b-3e188cb73ec2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "7d74fd5f-cfca-4914-9a01-22ab2085dcad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031141Z:7d74fd5f-cfca-4914-9a01-22ab2085dcad" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "3861f6b0-d20a-4d07-8004-9342f9278460" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "cd7c5d32-3848-4da9-a350-f81216490042" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030939Z:cd7c5d32-3848-4da9-a350-f81216490042" + ], + "Date": [ + "Tue, 25 Aug 2015 03:09:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "70afd446-f95a-4bbf-b6e0-d571dc2c3e00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "51320c87-0960-4d53-82d1-162fc36b25ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031009Z:51320c87-0960-4d53-82d1-162fc36b25ee" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "72934a9d-589e-4f5f-b516-db37b6f871b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "af0140af-1ccc-494e-a4a5-6cafb276ce6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031040Z:af0140af-1ccc-494e-a4a5-6cafb276ce6f" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "51965530-8bca-4ac9-8be7-70bfca63bee6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "e03ff170-7465-41e6-9e4b-94660d66e35a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031141Z:e03ff170-7465-41e6-9e4b-94660d66e35a" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "3335e47b-e886-498d-bdb1-2a94f0a4f0da" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "723a5e37-f715-4508-8764-ef90c1b00914" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031412Z:723a5e37-f715-4508-8764-ef90c1b00914" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "777bdb8c-a639-43cd-9f1f-86bdec9653c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "0c59793a-6233-41ec-a3a7-ac9f69b682c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031413Z:0c59793a-6233-41ec-a3a7-ac9f69b682c1" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 11\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"testDataDisk3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/test/data3.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"diskSizeGB\": 12\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Network/networkInterfaces/niccrptestps1253\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253\",\r\n \"name\": \"vmcrptestps1253\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "4e3ad914-bac9-43f2-8c2a-389c1fb5d16e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "563aa738-bd17-4ca7-9e7f-8699e8e447ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031443Z:563aa738-bd17-4ca7-9e7f-8699e8e447ca" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.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": [ + "14950" + ], + "x-ms-request-id": [ + "3152be79-8f61-4d4a-9365-35e172fb57d1" + ], + "x-ms-correlation-request-id": [ + "3152be79-8f61-4d4a-9365-35e172fb57d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031514Z:3152be79-8f61-4d4a-9365-35e172fb57d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253/start?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTMvc3RhcnQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/444c7d36-742e-4db9-8ae1-276a2937a6e8?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "444c7d36-742e-4db9-8ae1-276a2937a6e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/444c7d36-742e-4db9-8ae1-276a2937a6e8?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "4d621c2b-40f0-4842-b0af-d3d5fd824f50" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030939Z:4d621c2b-40f0-4842-b0af-d3d5fd824f50" + ], + "Date": [ + "Tue, 25 Aug 2015 03:09:39 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/444c7d36-742e-4db9-8ae1-276a2937a6e8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ0YzdkMzYtNzQyZS00ZGI5LThhZTEtMjc2YTI5MzdhNmU4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"444c7d36-742e-4db9-8ae1-276a2937a6e8\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:09:39.2551868-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "aa50415d-75c4-48b0-9e4a-27b4c7ab8bd4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "20eaea52-0c77-417c-a299-257859524992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T030939Z:20eaea52-0c77-417c-a299-257859524992" + ], + "Date": [ + "Tue, 25 Aug 2015 03:09:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/444c7d36-742e-4db9-8ae1-276a2937a6e8?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ0YzdkMzYtNzQyZS00ZGI5LThhZTEtMjc2YTI5MzdhNmU4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"444c7d36-742e-4db9-8ae1-276a2937a6e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:09:39.2551868-07:00\",\r\n \"endTime\": \"2015-08-24T20:10:01.6770616-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "aa9782e2-3c1e-48eb-ad33-a3a762708040" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "7afe0cba-fe1f-4b48-96aa-ed3d79689e65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031009Z:7afe0cba-fe1f-4b48-96aa-ed3d79689e65" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253/restart?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTMvcmVzdGFydD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/cadc09a4-0e11-4b77-b837-777849b6e7f5?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "cadc09a4-0e11-4b77-b837-777849b6e7f5" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/cadc09a4-0e11-4b77-b837-777849b6e7f5?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "06c296c3-745b-4f87-b8b1-ca600e598f5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031010Z:06c296c3-745b-4f87-b8b1-ca600e598f5b" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:09 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/cadc09a4-0e11-4b77-b837-777849b6e7f5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2FkYzA5YTQtMGUxMS00Yjc3LWI4MzctNzc3ODQ5YjZlN2Y1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"cadc09a4-0e11-4b77-b837-777849b6e7f5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:10:09.7708118-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "17acfeaf-1152-4b78-b83e-34a2c8e62e3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "1f4a5e9b-6c0c-4122-843d-1d65a4febe74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031010Z:1f4a5e9b-6c0c-4122-843d-1d65a4febe74" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/cadc09a4-0e11-4b77-b837-777849b6e7f5?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2FkYzA5YTQtMGUxMS00Yjc3LWI4MzctNzc3ODQ5YjZlN2Y1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"cadc09a4-0e11-4b77-b837-777849b6e7f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:10:09.7708118-07:00\",\r\n \"endTime\": \"2015-08-24T20:10:10.1457227-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "51298a1d-765a-451c-b9db-e24d1f6c3b68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "1acd3cdc-f843-4d11-872f-ecff6c1bf08c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031040Z:1acd3cdc-f843-4d11-872f-ecff6c1bf08c" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253/powerOff?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTMvcG93ZXJPZmY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/fc13b29d-be7b-450c-a0e9-33ffa8ca110e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "fc13b29d-be7b-450c-a0e9-33ffa8ca110e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/fc13b29d-be7b-450c-a0e9-33ffa8ca110e?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "8c431221-d57b-4814-ba5b-250947826060" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031040Z:8c431221-d57b-4814-ba5b-250947826060" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:40 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/fc13b29d-be7b-450c-a0e9-33ffa8ca110e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmMxM2IyOWQtYmU3Yi00NTBjLWEwZTktMzNmZmE4Y2ExMTBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fc13b29d-be7b-450c-a0e9-33ffa8ca110e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:10:40.3645291-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "e1ac7bcd-b7b2-4256-aaae-069e97401fdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "e04ae98c-4859-4d99-bdd4-977e5d93ef33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031040Z:e04ae98c-4859-4d99-bdd4-977e5d93ef33" + ], + "Date": [ + "Tue, 25 Aug 2015 03:10:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/fc13b29d-be7b-450c-a0e9-33ffa8ca110e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmMxM2IyOWQtYmU3Yi00NTBjLWEwZTktMzNmZmE4Y2ExMTBlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"fc13b29d-be7b-450c-a0e9-33ffa8ca110e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:10:40.3645291-07:00\",\r\n \"endTime\": \"2015-08-24T20:10:54.755176-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "780b565d-369a-41da-823a-6f0391143d09" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "a600fd04-01ee-4dda-8d27-c75fb6762e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031110Z:a600fd04-01ee-4dda-8d27-c75fb6762e9c" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/856a9451-f8bb-4946-abd4-c1b2273a9d61?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU2YTk0NTEtZjhiYi00OTQ2LWFiZDQtYzFiMjI3M2E5ZDYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"856a9451-f8bb-4946-abd4-c1b2273a9d61\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:11:10.9426704-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "451d9ca4-38f1-4887-8673-b5d45ae4ada3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "c7e78a7e-b18e-480e-9b3e-ed2e98c521e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031111Z:c7e78a7e-b18e-480e-9b3e-ed2e98c521e0" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/856a9451-f8bb-4946-abd4-c1b2273a9d61?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODU2YTk0NTEtZjhiYi00OTQ2LWFiZDQtYzFiMjI3M2E5ZDYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"856a9451-f8bb-4946-abd4-c1b2273a9d61\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:11:10.9426704-07:00\",\r\n \"endTime\": \"2015-08-24T20:11:17.6820768-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "2ee0175a-7aea-4c7e-8ebb-503235513597" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "38c59937-a213-4b7f-beb6-20dc77eccc4a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031141Z:38c59937-a213-4b7f-beb6-20dc77eccc4a" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253/deallocate?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTMvZGVhbGxvY2F0ZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "12373034-c434-4f4b-936f-e1b55ffeb0ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "96d1a456-8500-402a-955a-537ec5d707e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031141Z:96d1a456-8500-402a-955a-537ec5d707e8" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTIzNzMwMzQtYzQzNC00ZjRiLTkzNmYtZTFiNTVmZmViMGVlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12373034-c434-4f4b-936f-e1b55ffeb0ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:11:41.6039468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "08300a56-bb18-4bf9-83e8-bd996c832b5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "f2902502-7f92-4d06-b861-04caf997be23" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031141Z:f2902502-7f92-4d06-b861-04caf997be23" + ], + "Date": [ + "Tue, 25 Aug 2015 03:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTIzNzMwMzQtYzQzNC00ZjRiLTkzNmYtZTFiNTVmZmViMGVlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12373034-c434-4f4b-936f-e1b55ffeb0ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:11:41.6039468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "c6b08b4b-fdc4-4984-a3d8-a8dbad730d8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "0bdcc6b1-766a-4654-a1e2-f2ffd5d9424e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031212Z:0bdcc6b1-766a-4654-a1e2-f2ffd5d9424e" + ], + "Date": [ + "Tue, 25 Aug 2015 03:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTIzNzMwMzQtYzQzNC00ZjRiLTkzNmYtZTFiNTVmZmViMGVlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12373034-c434-4f4b-936f-e1b55ffeb0ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:11:41.6039468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "f62457ff-c214-44bc-b600-979a8f4cbb51" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "410af2c9-c211-4782-af46-eb443f21697a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031242Z:410af2c9-c211-4782-af46-eb443f21697a" + ], + "Date": [ + "Tue, 25 Aug 2015 03:12:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTIzNzMwMzQtYzQzNC00ZjRiLTkzNmYtZTFiNTVmZmViMGVlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12373034-c434-4f4b-936f-e1b55ffeb0ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:11:41.6039468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "bbd47377-02f4-4617-b463-2d0e19a699a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "0e3d977c-27ca-41f9-819e-f3a3b7291b00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031312Z:0e3d977c-27ca-41f9-819e-f3a3b7291b00" + ], + "Date": [ + "Tue, 25 Aug 2015 03:13:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTIzNzMwMzQtYzQzNC00ZjRiLTkzNmYtZTFiNTVmZmViMGVlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12373034-c434-4f4b-936f-e1b55ffeb0ee\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:11:41.6039468-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "a8385b6e-aeb9-4221-9177-55724a475833" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "80274c12-f0d6-489b-a8f8-8b02cbd66316" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031342Z:80274c12-f0d6-489b-a8f8-8b02cbd66316" + ], + "Date": [ + "Tue, 25 Aug 2015 03:13:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12373034-c434-4f4b-936f-e1b55ffeb0ee?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTIzNzMwMzQtYzQzNC00ZjRiLTkzNmYtZTFiNTVmZmViMGVlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12373034-c434-4f4b-936f-e1b55ffeb0ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:11:41.6039468-07:00\",\r\n \"endTime\": \"2015-08-24T20:13:54.5310317-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "081c699c-9b26-4ae5-ac6d-abc79e55e57a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "2325f4ba-0766-44a3-bc93-6617a4e86f39" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031412Z:2325f4ba-0766-44a3-bc93-6617a4e86f39" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253/generalize?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTMvZ2VuZXJhbGl6ZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "d5dfa02c-2e67-4965-965c-bae5abe4b6c8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "f0efd30d-1140-42a2-8f24-8e1773fe1a73" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031413Z:f0efd30d-1140-42a2-8f24-8e1773fe1a73" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253/capture?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTMvY2FwdHVyZT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslib\",\r\n \"destinationContainerName\": \"crptestps7091\",\r\n \"overwriteVhds\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "102" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12b3be85-54af-47af-8fd7-09ae6581d86e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "12b3be85-54af-47af-8fd7-09ae6581d86e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12b3be85-54af-47af-8fd7-09ae6581d86e?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "cac343f8-d7f9-4e5c-b630-0fb8e7957fc5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031413Z:cac343f8-d7f9-4e5c-b630-0fb8e7957fc5" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:12 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12b3be85-54af-47af-8fd7-09ae6581d86e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJiM2JlODUtNTRhZi00N2FmLThmZDctMDlhZTY1ODFkODZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12b3be85-54af-47af-8fd7-09ae6581d86e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:14:13.0781042-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "73340ebe-a1ce-4427-8fd4-242549cff228" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "01ecbd05-7d74-44f4-a9f2-814131404b9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031413Z:01ecbd05-7d74-44f4-a9f2-814131404b9c" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/12b3be85-54af-47af-8fd7-09ae6581d86e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJiM2JlODUtNTRhZi00N2FmLThmZDctMDlhZTY1ODFkODZlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"12b3be85-54af-47af-8fd7-09ae6581d86e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:14:13.0781042-07:00\",\r\n \"endTime\": \"2015-08-24T20:14:14.9218667-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A4\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"pslib-osDisk.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/system/Microsoft.Compute/Images/crptestps7091/pslib-osDisk.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/vmcontainera2f75467-78aa-40d6-a2dd-1c8a219f508c/osDisk.a2f75467-78aa-40d6-a2dd-1c8a219f508c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"pslib-dataDisk-1.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/system/Microsoft.Compute/Images/crptestps7091/pslib-dataDisk-1.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/vmcontainera2f75467-78aa-40d6-a2dd-1c8a219f508c/dataDisk-1.a2f75467-78aa-40d6-a2dd-1c8a219f508c.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"pslib-dataDisk-2.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/system/Microsoft.Compute/Images/crptestps7091/pslib-dataDisk-2.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/vmcontainera2f75467-78aa-40d6-a2dd-1c8a219f508c/dataDisk-2.a2f75467-78aa-40d6-a2dd-1c8a219f508c.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"pslib-dataDisk-3.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/system/Microsoft.Compute/Images/crptestps7091/pslib-dataDisk-3.45e03ae6-5539-4c87-8932-b5d7dc6d5b22.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stocrptestps1253.blob.core.windows.net/vmcontainera2f75467-78aa-40d6-a2dd-1c8a219f508c/dataDisk-3.a2f75467-78aa-40d6-a2dd-1c8a219f508c.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4042" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "0654be3c-48ec-4363-b823-2fb40edd7738" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "a73481f6-8da0-405f-9e7e-b8dfa3d7045e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031443Z:a73481f6-8da0-405f-9e7e-b8dfa3d7045e" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestps1253/providers/Microsoft.Compute/virtualMachines/vmcrptestps1253?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczEyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczEyNTM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/1e673ed5-3893-4bb2-8dca-5fb4de1f848e?api-version=2015-06-15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "1e673ed5-3893-4bb2-8dca-5fb4de1f848e" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/1e673ed5-3893-4bb2-8dca-5fb4de1f848e?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "e0e9a217-8df3-4c66-8724-3692dcaa8163" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031443Z:e0e9a217-8df3-4c66-8724-3692dcaa8163" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:43 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/1e673ed5-3893-4bb2-8dca-5fb4de1f848e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWU2NzNlZDUtMzg5My00YmIyLThkY2EtNWZiNGRlMWY4NDhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1e673ed5-3893-4bb2-8dca-5fb4de1f848e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-24T20:14:43.598822-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "140" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "a92d49c3-b215-4763-b8ea-fc1ecfe4213f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "24a70894-69cf-41a8-b773-434e15175e55" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031444Z:24a70894-69cf-41a8-b773-434e15175e55" + ], + "Date": [ + "Tue, 25 Aug 2015 03:14:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/westus/operations/1e673ed5-3893-4bb2-8dca-5fb4de1f848e?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWU2NzNlZDUtMzg5My00YmIyLThkY2EtNWZiNGRlMWY4NDhlP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/8.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"1e673ed5-3893-4bb2-8dca-5fb4de1f848e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-24T20:14:43.598822-07:00\",\r\n \"endTime\": \"2015-08-24T20:14:54.8850399-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b222a86a-df33-4ff8-8c54-43df6e2d24f5_130828608005085541" + ], + "x-ms-request-id": [ + "4b9fa3bb-f7e3-4ba0-8a3c-efcb3925aeea" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "60f50e10-183f-47cb-bfd5-fb1b9f92552e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031514Z:60f50e10-183f-47cb-bfd5-fb1b9f92552e" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestps1253?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczEyNTM/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": [ + "1189" + ], + "x-ms-request-id": [ + "275c5ef3-6c40-4666-b3fe-0c175ea0c16d" + ], + "x-ms-correlation-request-id": [ + "275c5ef3-6c40-4666-b3fe-0c175ea0c16d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031514Z:275c5ef3-6c40-4666-b3fe-0c175ea0c16d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14948" + ], + "x-ms-request-id": [ + "37cea33d-def1-4e22-abf0-a67c82818ed6" + ], + "x-ms-correlation-request-id": [ + "37cea33d-def1-4e22-abf0-a67c82818ed6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031514Z:37cea33d-def1-4e22-abf0-a67c82818ed6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14947" + ], + "x-ms-request-id": [ + "4ef4eb8a-85e1-4c8e-b5bb-c9b751bdf3a2" + ], + "x-ms-correlation-request-id": [ + "4ef4eb8a-85e1-4c8e-b5bb-c9b751bdf3a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031529Z:4ef4eb8a-85e1-4c8e-b5bb-c9b751bdf3a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14946" + ], + "x-ms-request-id": [ + "c1b54f59-10c8-4955-b828-d3d79ea31260" + ], + "x-ms-correlation-request-id": [ + "c1b54f59-10c8-4955-b828-d3d79ea31260" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031544Z:c1b54f59-10c8-4955-b828-d3d79ea31260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14945" + ], + "x-ms-request-id": [ + "903bd811-8c02-48e5-a70f-cc190d919a4c" + ], + "x-ms-correlation-request-id": [ + "903bd811-8c02-48e5-a70f-cc190d919a4c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031559Z:903bd811-8c02-48e5-a70f-cc190d919a4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:15:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14944" + ], + "x-ms-request-id": [ + "eb25dcd1-783b-4a78-a187-0cdfe151117b" + ], + "x-ms-correlation-request-id": [ + "eb25dcd1-783b-4a78-a187-0cdfe151117b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031614Z:eb25dcd1-783b-4a78-a187-0cdfe151117b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:16:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14943" + ], + "x-ms-request-id": [ + "7a4ec58a-d6a6-4562-b9a0-0fe17c3a8f97" + ], + "x-ms-correlation-request-id": [ + "7a4ec58a-d6a6-4562-b9a0-0fe17c3a8f97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031630Z:7a4ec58a-d6a6-4562-b9a0-0fe17c3a8f97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:16:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14942" + ], + "x-ms-request-id": [ + "4e0154ee-34e6-438f-aedf-117605ba915f" + ], + "x-ms-correlation-request-id": [ + "4e0154ee-34e6-438f-aedf-117605ba915f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031645Z:4e0154ee-34e6-438f-aedf-117605ba915f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:16:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14941" + ], + "x-ms-request-id": [ + "9cd83101-a8d5-48d2-bbfb-4514bb66cc2f" + ], + "x-ms-correlation-request-id": [ + "9cd83101-a8d5-48d2-bbfb-4514bb66cc2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031700Z:9cd83101-a8d5-48d2-bbfb-4514bb66cc2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:16:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14940" + ], + "x-ms-request-id": [ + "a31d7a34-314f-4a14-b47d-6fbd221826a3" + ], + "x-ms-correlation-request-id": [ + "a31d7a34-314f-4a14-b47d-6fbd221826a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031715Z:a31d7a34-314f-4a14-b47d-6fbd221826a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:17:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14939" + ], + "x-ms-request-id": [ + "95490759-3fea-49ad-bbce-941641fdafa9" + ], + "x-ms-correlation-request-id": [ + "95490759-3fea-49ad-bbce-941641fdafa9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031730Z:95490759-3fea-49ad-bbce-941641fdafa9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:17:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14938" + ], + "x-ms-request-id": [ + "876e0710-15cb-4103-ad56-d1a437c16fdb" + ], + "x-ms-correlation-request-id": [ + "876e0710-15cb-4103-ad56-d1a437c16fdb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031745Z:876e0710-15cb-4103-ad56-d1a437c16fdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:17:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMxMjUzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk14TWpVekxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14937" + ], + "x-ms-request-id": [ + "5a312b7d-cac6-49a4-8be9-3be13e4f3b1e" + ], + "x-ms-correlation-request-id": [ + "5a312b7d-cac6-49a4-8be9-3be13e4f3b1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150825T031800Z:5a312b7d-cac6-49a4-8be9-3be13e4f3b1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 25 Aug 2015 03:17:59 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachinePiping": [ + "crptestps1253", + "crptestps7091" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 7a08e4ff2035..35f899433f69 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -248,6 +248,7 @@ + @@ -257,14 +258,21 @@ + + + + + + + @@ -308,6 +316,14 @@ {c60342b1-47d3-4a0e-8081-9b97ce60b7af} Commands.Profile + + {73820cbc-f4eb-4c5e-b4f0-cc4a93fbf157} + Sync + + + {80496b7b-068a-4a1e-b0bb-4b1fff3fa616} + VhdManagement + {98cfd96b-a6bc-4f15-ae2c-603fc2b58981} Commands.Network diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index 7a6ac7398147..69668d16bab2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -98,6 +98,8 @@ public static class ProfileNouns public const string VirtualMachineDscExtension = "AzureVMDscExtension"; public const string VirtualMachineDscConfiguration = "AzureVMDscConfiguration"; + public const string Vhd = "AzureVhd"; + // Sql Server public const string VirtualMachineSqlServerExtension = "AzureVMSqlServerExtension"; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/SetAzureVMAccessExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/SetAzureVMAccessExtension.cs index ef2c61f2f520..7b656030817f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/SetAzureVMAccessExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/SetAzureVMAccessExtension.cs @@ -17,7 +17,6 @@ using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Newtonsoft.Json; -using System; using System.Collections; using System.Management.Automation; @@ -28,8 +27,8 @@ namespace Microsoft.Azure.Commands.Compute ProfileNouns.VirtualMachineAccessExtension)] public class SetAzureVMAccessExtensionCommand : VirtualMachineExtensionBaseCmdlet { - private const string userNameKey = "userName"; - private const string passwordKey = "password"; + private const string userNameKey = "UserName"; + private const string passwordKey = "Password"; [Parameter( Mandatory = true, @@ -87,7 +86,6 @@ public class SetAzureVMAccessExtensionCommand : VirtualMachineExtensionBaseCmdle [ValidateNotNullOrEmpty] public string Location { get; set; } - public override void ExecuteCmdlet() { base.ExecuteCmdlet(); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPrivateSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPrivateSettings.cs index e1f6444c08d3..3b521aa2798e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPrivateSettings.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPrivateSettings.cs @@ -16,6 +16,6 @@ namespace Microsoft.Azure.Commands.Compute { public class VMAccessExtensionPrivateSettings { - public string password; + public string Password; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPublicSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPublicSettings.cs index 7542a81d23c2..57288590c8c2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPublicSettings.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VMAccessExtensionPublicSettings.cs @@ -16,6 +16,6 @@ namespace Microsoft.Azure.Commands.Compute { public class VMAccessExtensionPublicSettings { - public string userName; + public string UserName; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs index 82d18e6ff7a2..1b5370428bae 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs @@ -45,7 +45,7 @@ public VirtualMachineAccessExtensionContext(PSVirtualMachineExtension psExt) ProtectedSettings = psExt.ProtectedSettings; ProvisioningState = psExt.ProvisioningState; Statuses = psExt.Statuses; - UserName = (publicSettings == null) ? null : publicSettings.userName; + UserName = (publicSettings == null) ? null : publicSettings.UserName; } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSSyncOutputEvents.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSSyncOutputEvents.cs new file mode 100644 index 000000000000..52cea8875da8 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSSyncOutputEvents.cs @@ -0,0 +1,295 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Sync; +using Microsoft.WindowsAzure.Commands.Sync.Upload; +using Microsoft.WindowsAzure.Commands.Tools.Vhd.Model; +using Microsoft.WindowsAzure.Storage; +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Management.Automation; +using System.Management.Automation.Runspaces; +using ProgressRecord = Microsoft.WindowsAzure.Commands.Sync.ProgressRecord; +using Rsrc = Microsoft.Azure.Commands.Compute.Properties.Resources; + +namespace Microsoft.Azure.Commands.Compute.Models +{ + public class PSSyncOutputEvents : ISyncOutputEvents, IDisposable + { + private readonly PSCmdlet cmdlet; + private Runspace runspace; + private bool disposed; + + public PSSyncOutputEvents(PSCmdlet cmdlet) + { + this.cmdlet = cmdlet; + this.runspace = RunspaceFactory.CreateRunspace(this.cmdlet.Host); + this.runspace.Open(); + } + + private static string FormatDuration(TimeSpan ts) + { + if (ts.Days == 0) + { + return String.Format("{0:00}:{1:00}:{2:00}", ts.Hours, ts.Minutes, ts.Seconds); + } + return String.Format(Rsrc.PSSyncOutputEventsFormatDuration, ts.Days, ts.Hours, ts.Minutes, ts.Seconds); + } + + public void ProgressCopyStatus(ProgressRecord record) + { + ProgressCopyStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime); + } + + public void ProgressCopyStatus(double precentComplete, double avgThroughputMbps, TimeSpan remainingTime) + { + LogProgress(0, Rsrc.PSSyncOutputEventsCopying, precentComplete, remainingTime, avgThroughputMbps); + } + + public void ProgressCopyComplete(TimeSpan elapsed) + { + LogProgressComplete(0, Rsrc.PSSyncOutputEventsCopying); + LogMessage(Rsrc.PSSyncOutputEventsElapsedTimeForCopy, FormatDuration(elapsed)); + } + + public void ProgressUploadStatus(ProgressRecord record) + { + ProgressUploadStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime); + } + + public void ProgressUploadStatus(double precentComplete, double avgThroughputMbps, TimeSpan remainingTime) + { + LogProgress(0, Rsrc.PSSyncOutputEventsUploading, precentComplete, remainingTime, avgThroughputMbps); + } + + private void LogProgress(int activityId, string activity, double precentComplete, TimeSpan remainingTime, double avgThroughputMbps) + { + var message = String.Format(Rsrc.PSSyncOutputEventsLogProgress, + precentComplete, + FormatDuration(remainingTime), + avgThroughputMbps); + var progressCommand = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -SecondsRemaining {3} -PercentComplete {4}", activityId, activity, message, (int) remainingTime.TotalSeconds, (int) precentComplete); + using(var ps = System.Management.Automation.PowerShell.Create()) + { + ps.Runspace = runspace; + ps.AddScript(progressCommand); + ps.Invoke(); + } + } + + private void LogProgressComplete(int activityId, string activity) + { + var progressCommand = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -Completed", activityId, activity, Rsrc.PSSyncOutputEventsLogProgressCompleteCompleted); + using(var ps = System.Management.Automation.PowerShell.Create()) + { + ps.Runspace = runspace; + ps.AddScript(progressCommand); + ps.Invoke(); + } + } + + public void MessageCreatingNewPageBlob(long pageBlobSize) + { + LogMessage(Rsrc.PSSyncOutputEventsCreatingNewPageBlob, pageBlobSize); + } + + private void LogMessage(string format, params object[] parameters) + { + var message = String.Format(format, parameters); + var verboseMessage = String.Format("Write-Host '{0}'", message); + using (var ps = System.Management.Automation.PowerShell.Create()) + { + ps.Runspace = runspace; + ps.AddScript(verboseMessage); + ps.Invoke(); + } + } + + private void LogError(Exception e) + { + using (var ps = System.Management.Automation.PowerShell.Create()) + { + ps.Runspace = runspace; + ps.AddCommand("Write-Error"); + ps.AddParameter("ErrorRecord", new ErrorRecord(e, String.Empty, ErrorCategory.NotSpecified, null)); + ps.Invoke(); + } + } + + public void MessageResumingUpload() + { + LogMessage(Rsrc.PSSyncOutputEventsResumingUpload); + } + + public void ProgressUploadComplete(TimeSpan elapsed) + { + LogProgressComplete(0, Rsrc.PSSyncOutputEventsUploading); + LogMessage(Rsrc.PSSyncOutputEventsElapsedTimeForUpload, FormatDuration(elapsed)); + } + + public void ProgressDownloadStatus(ProgressRecord record) + { + ProgressDownloadStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime); + } + + public void ProgressDownloadStatus(double precentComplete, double avgThroughputMbps, TimeSpan remainingTime) + { + LogProgress(0, Rsrc.PSSyncOutputEventsDownloading, precentComplete, remainingTime, avgThroughputMbps); + } + + public void ProgressDownloadComplete(TimeSpan elapsed) + { + LogProgressComplete(0, Rsrc.PSSyncOutputEventsDownloading); + LogMessage(Rsrc.PSSyncOutputEventsElapsedTimeForDownload, FormatDuration(elapsed)); + } + + public void ProgressOperationStatus(ProgressRecord record) + { + ProgressOperationStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime); + } + + public void ProgressOperationStatus(double percentComplete, double avgThroughputMbps, TimeSpan remainingTime) + { + LogProgress(1, Rsrc.PSSyncOutputEventsCalculatingMD5Hash, percentComplete, remainingTime, avgThroughputMbps); + } + + public void ProgressOperationComplete(TimeSpan elapsed) + { + LogProgressComplete(1, Rsrc.PSSyncOutputEventsCalculatingMD5Hash); + LogMessage(Rsrc.PSSyncOutputEventsElapsedTimeForOperation, FormatDuration(elapsed)); + } + + + public void ErrorUploadFailedWithExceptions(IList exceptions) + { + LogMessage(Rsrc.PSSyncOutputEventsUploadFailedWithException); + foreach (var exception in exceptions) + { + LogError(exception); + } + } + + public void MessageCalculatingMD5Hash(string filePath) + { + LogMessage(Rsrc.PSSyncOutputEventsCalculatingMD5HashForFile, filePath); + } + + public void MessageMD5HashCalculationFinished() + { + LogMessage(Rsrc.PSSyncOutputEventsMD5HashCalculationFinished); + } + + public void MessageRetryingAfterANetworkDisruption() + { + LogMessage(Rsrc.PSSyncOutputEventsRetryingAfterANetworkDisruption); + } + + public void DebugRetryingAfterException(Exception lastException) + { + LogDebug(lastException.ToString()); + + var storageException = lastException as StorageException; + var message = ExceptionUtil.DumpStorageExceptionErrorDetails(storageException); + if (message != String.Empty) + { + LogDebug(message); + } + } + + public void MessageDetectingActualDataBlocks() + { + LogMessage(Rsrc.PSSyncOutputEventsDetectingActualDataBlocks); + } + + public void MessageDetectingActualDataBlocksCompleted() + { + LogMessage(Rsrc.PSSyncOutputEventsDetectingActualDataBlocksCompleted); + } + + public void MessagePrintBlockRange(IndexRange range) + { + LogMessage(Rsrc.PSSyncOutputEventsPrintBlockRange, range, range.Length); + } + + public void DebugEmptyBlockDetected(IndexRange range) + { + LogDebug(Rsrc.PSSyncOutputEventsEmptyBlockDetected, range.ToString()); + } + + private void LogDebug(string format, params object[] parameters) + { + var message = String.Format(format, parameters); + var debugMessage = String.Format("Write-Debug -Message '{0}'", message); + using (var ps = System.Management.Automation.PowerShell.Create()) + { + ps.Runspace = runspace; + ps.AddScript(debugMessage); + ps.Invoke(); + } + } + + public void ProgressEmptyBlockDetection(int processedRangeCount, int totalRangeCount) + { + using(var ps = System.Management.Automation.PowerShell.Create()) + { + if (processedRangeCount >= totalRangeCount) + { + + var progressCommand1 = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -Completed", 2, Rsrc.PSSyncOutputEventsProgressEmptyBlockDetection, Rsrc.PSSyncOutputEventsEmptyBlockDetectionCompleted); + ps.Runspace = runspace; + ps.AddScript(progressCommand1); + ps.Invoke(); + return; + } + + var progressCommand = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -SecondsRemaining {3} -PercentComplete {4}", 2, Rsrc.PSSyncOutputEventsProgressEmptyBlockDetection, Rsrc.PSSyncOutputEventsEmptyBlockDetectionDetecting, -1, ((double)processedRangeCount / totalRangeCount) * 100); + ps.Runspace = runspace; + ps.AddScript(progressCommand); + ps.Invoke(); + } + } + + public void WriteVerboseWithTimestamp(string message, params object[] args) + { + var messageWithTimeStamp = string.Format(CultureInfo.CurrentCulture, "{0:T} - {1}", DateTime.Now, string.Format(message, args)); + var progressCommand = String.Format(@"Write-Verbose -Message {0}", messageWithTimeStamp); + using (var ps = System.Management.Automation.PowerShell.Create()) + { + ps.Runspace = runspace; + ps.AddScript(progressCommand); + ps.Invoke(); + } + } + + + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + + protected virtual void Dispose(bool disposing) + { + if(!disposed) + { + if (disposing) + { + runspace.Dispose(); + } + this.disposed = true; + } + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/UploadParameters.cs b/src/ResourceManager/Compute/Commands.Compute/Models/UploadParameters.cs new file mode 100644 index 000000000000..720299c428f8 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Models/UploadParameters.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.StorageServices; +using Microsoft.WindowsAzure.Commands.Sync.Download; +using System.IO; + +namespace Microsoft.Azure.Commands.Compute.Models +{ + public class UploadParameters + { + public UploadParameters(BlobUri destinationUri, BlobUri baseImageUri, FileInfo localFilePath, bool overWrite, int numberOfUploaderThreads) + { + DestinationUri = destinationUri; + BaseImageUri = baseImageUri; + LocalFilePath = localFilePath; + OverWrite = overWrite; + NumberOfUploaderThreads = numberOfUploaderThreads; + } + + public BlobUri DestinationUri { get; private set; } + + public BlobUri BaseImageUri { get; private set; } + + public FileInfo LocalFilePath { get; private set; } + + public bool OverWrite { get; private set; } + + public int NumberOfUploaderThreads { get; private set; } + + public AddAzureVhdCommand Cmdlet { get; set; } + + public CloudPageBlobObjectFactory BlobObjectFactory { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/VhdUploadContext.cs b/src/ResourceManager/Compute/Commands.Compute/Models/VhdUploadContext.cs new file mode 100644 index 000000000000..bbdd61a3a514 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Models/VhdUploadContext.cs @@ -0,0 +1,25 @@ +// ---------------------------------------------------------------------------------- +// +// 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.IO; + +namespace Microsoft.Azure.Commands.Compute.Models +{ + public class VhdUploadContext + { + public FileInfo LocalFilePath { get; set; } + public Uri DestinationUri { get; set; } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/VhdUploaderModel.cs b/src/ResourceManager/Compute/Commands.Compute/Models/VhdUploaderModel.cs new file mode 100644 index 000000000000..68b4af1f225c --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Models/VhdUploaderModel.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Sync; +using Microsoft.WindowsAzure.Commands.Sync.Upload; + +namespace Microsoft.Azure.Commands.Compute.Models +{ + public class VhdUploaderModel + { + public static VhdUploadContext Upload(UploadParameters uploadParameters) + { + Program.SyncOutput = new PSSyncOutputEvents(uploadParameters.Cmdlet); + + BlobCreatorBase blobCreator; + if (uploadParameters.BaseImageUri != null) + { + blobCreator = new PatchingBlobCreator(uploadParameters.LocalFilePath, uploadParameters.DestinationUri, uploadParameters.BaseImageUri, uploadParameters.BlobObjectFactory, uploadParameters.OverWrite); + } + else + { + blobCreator = new BlobCreator(uploadParameters.LocalFilePath, uploadParameters.DestinationUri, uploadParameters.BlobObjectFactory, uploadParameters.OverWrite); + } + + using (var uploadContext = blobCreator.Create()) + { + var synchronizer = new BlobSynchronizer(uploadContext, uploadParameters.NumberOfUploaderThreads); + if (synchronizer.Synchronize()) + { + return new VhdUploadContext {LocalFilePath = uploadParameters.LocalFilePath, DestinationUri = uploadParameters.DestinationUri.Uri}; + } + return null; + } + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index 80554131d8da..ed794d3ece51 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -60,6 +60,15 @@ internal Resources() { } } + /// + /// Looks up a localized string similar to SAS Uri for the destination blob is not supported in patch mode:{0}. + /// + public static string AddAzureVhdCommandSASUriNotSupportedInPatchMode { + get { + return ResourceManager.GetString("AddAzureVhdCommandSASUriNotSupportedInPatchMode", resourceCulture); + } + } + /// /// Looks up a localized string similar to Availability set removal operation. /// @@ -269,6 +278,222 @@ public static string DscExtensionRemovalConfirmation { } } + /// + /// Looks up a localized string similar to Calculating MD5 Hash. + /// + public static string PSSyncOutputEventsCalculatingMD5Hash { + get { + return ResourceManager.GetString("PSSyncOutputEventsCalculatingMD5Hash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MD5 hash is being calculated for the file '{0}'.. + /// + public static string PSSyncOutputEventsCalculatingMD5HashForFile { + get { + return ResourceManager.GetString("PSSyncOutputEventsCalculatingMD5HashForFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copying. + /// + public static string PSSyncOutputEventsCopying { + get { + return ResourceManager.GetString("PSSyncOutputEventsCopying", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating new page blob of size {0}.... + /// + public static string PSSyncOutputEventsCreatingNewPageBlob { + get { + return ResourceManager.GetString("PSSyncOutputEventsCreatingNewPageBlob", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Detecting the empty data blocks in the local file.. + /// + public static string PSSyncOutputEventsDetectingActualDataBlocks { + get { + return ResourceManager.GetString("PSSyncOutputEventsDetectingActualDataBlocks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Detecting the empty data blocks completed.. + /// + public static string PSSyncOutputEventsDetectingActualDataBlocksCompleted { + get { + return ResourceManager.GetString("PSSyncOutputEventsDetectingActualDataBlocksCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Downloading. + /// + public static string PSSyncOutputEventsDownloading { + get { + return ResourceManager.GetString("PSSyncOutputEventsDownloading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Elapsed time for copy: {0}. + /// + public static string PSSyncOutputEventsElapsedTimeForCopy { + get { + return ResourceManager.GetString("PSSyncOutputEventsElapsedTimeForCopy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Elapsed time for download: {0}. + /// + public static string PSSyncOutputEventsElapsedTimeForDownload { + get { + return ResourceManager.GetString("PSSyncOutputEventsElapsedTimeForDownload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Elapsed time for the operation: {0}. + /// + public static string PSSyncOutputEventsElapsedTimeForOperation { + get { + return ResourceManager.GetString("PSSyncOutputEventsElapsedTimeForOperation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Elapsed time for upload: {0}. + /// + public static string PSSyncOutputEventsElapsedTimeForUpload { + get { + return ResourceManager.GetString("PSSyncOutputEventsElapsedTimeForUpload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Empty block detected: {0}. + /// + public static string PSSyncOutputEventsEmptyBlockDetected { + get { + return ResourceManager.GetString("PSSyncOutputEventsEmptyBlockDetected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Completed. + /// + public static string PSSyncOutputEventsEmptyBlockDetectionCompleted { + get { + return ResourceManager.GetString("PSSyncOutputEventsEmptyBlockDetectionCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Detecting empty blocks. + /// + public static string PSSyncOutputEventsEmptyBlockDetectionDetecting { + get { + return ResourceManager.GetString("PSSyncOutputEventsEmptyBlockDetectionDetecting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} days {1:00}:{2:00}:{3:00}. + /// + public static string PSSyncOutputEventsFormatDuration { + get { + return ResourceManager.GetString("PSSyncOutputEventsFormatDuration", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0:0.0}% complete; Remaining Time: {1}; Throughput: {2:0.0}Mbps. + /// + public static string PSSyncOutputEventsLogProgress { + get { + return ResourceManager.GetString("PSSyncOutputEventsLogProgress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Completed. + /// + public static string PSSyncOutputEventsLogProgressCompleteCompleted { + get { + return ResourceManager.GetString("PSSyncOutputEventsLogProgressCompleteCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MD5 hash calculation is completed.. + /// + public static string PSSyncOutputEventsMD5HashCalculationFinished { + get { + return ResourceManager.GetString("PSSyncOutputEventsMD5HashCalculationFinished", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Range of the block is {0}, Length: {1}. + /// + public static string PSSyncOutputEventsPrintBlockRange { + get { + return ResourceManager.GetString("PSSyncOutputEventsPrintBlockRange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Empty Block Detection. + /// + public static string PSSyncOutputEventsProgressEmptyBlockDetection { + get { + return ResourceManager.GetString("PSSyncOutputEventsProgressEmptyBlockDetection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Found existing page blob. Resuming upload.... + /// + public static string PSSyncOutputEventsResumingUpload { + get { + return ResourceManager.GetString("PSSyncOutputEventsResumingUpload", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network disruption occured, retrying.. + /// + public static string PSSyncOutputEventsRetryingAfterANetworkDisruption { + get { + return ResourceManager.GetString("PSSyncOutputEventsRetryingAfterANetworkDisruption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upload failed with exceptions:. + /// + public static string PSSyncOutputEventsUploadFailedWithException { + get { + return ResourceManager.GetString("PSSyncOutputEventsUploadFailedWithException", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uploading. + /// + public static string PSSyncOutputEventsUploading { + get { + return ResourceManager.GetString("PSSyncOutputEventsUploading", resourceCulture); + } + } + /// /// Looks up a localized string similar to Configuration published to {0}. /// @@ -411,6 +636,15 @@ public static string PublishVMDscExtensionUploadArchiveConfigFileNotExist { } } + /// + /// Looks up a localized string similar to No current subscription has been designated. Use Select-AzureSubscription -Current <subscriptionName> to set the current subscription.. + /// + public static string StorageCredentialsFactoryCurrentSubscriptionNotSet { + get { + return ResourceManager.GetString("StorageCredentialsFactoryCurrentSubscriptionNotSet", resourceCulture); + } + } + /// /// Looks up a localized string similar to Virtual machine extension removal operation. /// diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index cf294afffec0..461ee2451a21 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -281,6 +281,84 @@ The file needs to be a PowerShell script (.ps1 or .psm1). {0} + + SAS Uri for the destination blob is not supported in patch mode:{0} + + + Calculating MD5 Hash + + + MD5 hash is being calculated for the file '{0}'. + + + Copying + + + Creating new page blob of size {0}... + + + Detecting the empty data blocks in the local file. + + + Detecting the empty data blocks completed. + + + Downloading + + + Elapsed time for copy: {0} + + + Elapsed time for download: {0} + + + Elapsed time for the operation: {0} + + + Elapsed time for upload: {0} + + + Empty block detected: {0} + + + Completed + + + Detecting empty blocks + + + {0} days {1:00}:{2:00}:{3:00} + + + {0:0.0}% complete; Remaining Time: {1}; Throughput: {2:0.0}Mbps + + + Completed + + + MD5 hash calculation is completed. + + + Range of the block is {0}, Length: {1} + + + Empty Block Detection + + + Found existing page blob. Resuming upload... + + + Network disruption occured, retrying. + + + Upload failed with exceptions: + + + Uploading + + + No current subscription has been designated. Use Select-AzureSubscription -Current <subscriptionName> to set the current subscription. + A data disk, {0}, is not currently assigned for this VM. Use Add-AzureVMDataDisk to add it. diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageServices/AddAzureVhdCommand.cs b/src/ResourceManager/Compute/Commands.Compute/StorageServices/AddAzureVhdCommand.cs new file mode 100644 index 000000000000..a6400989a92a --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/StorageServices/AddAzureVhdCommand.cs @@ -0,0 +1,175 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Sync.Download; +using System; +using System.IO; +using System.Management.Automation; +using Rsrc = Microsoft.Azure.Commands.Compute.Properties.Resources; +using Microsoft.Azure.Management.Storage; + +namespace Microsoft.Azure.Commands.Compute.StorageServices +{ + /// + /// Uploads a vhd as fixed disk format vhd to a blob in Microsoft Azure Storage + /// + [Cmdlet(VerbsCommon.Add, ProfileNouns.Vhd), OutputType(typeof(VhdUploadContext))] + public class AddAzureVhdCommand : ComputeClientBaseCmdlet + { + private const int DefaultNumberOfUploaderThreads = 8; + + [Parameter( + Position = 0, + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Uri to blob")] + [ValidateNotNullOrEmpty] + [Alias("dst")] + public Uri Destination + { + get; + set; + } + + [Parameter( + Position = 2, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Local path of the vhd file")] + [ValidateNotNullOrEmpty] + [Alias("lf")] + public FileInfo LocalFilePath + { + get; + set; + } + + [Parameter( + Position = 3, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Number of uploader threads")] + [ValidateNotNullOrEmpty] + [ValidateRange(1, 64)] + [Alias("th")] + public int? NumberOfUploaderThreads + { + get; + set; + } + + [Parameter( + Position = 4, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Uri to a base image in a blob storage account to apply the difference")] + [ValidateNotNullOrEmpty] + [Alias("bs")] + public Uri BaseImageUriToPatch + { + get; + set; + } + + [Parameter( + Position = 5, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName="Vhd", + HelpMessage = "Delete the blob if already exists")] + [ValidateNotNullOrEmpty] + [Alias("o")] + public SwitchParameter OverWrite + { + get; + set; + } + + public UploadParameters ValidateParameters() + { + BlobUri destinationUri; + if (!BlobUri.TryParseUri(Destination, out destinationUri)) + { + throw new ArgumentOutOfRangeException("Destination", this.Destination.ToString()); + } + + BlobUri baseImageUri = null; + if (this.BaseImageUriToPatch != null) + { + if (!BlobUri.TryParseUri(BaseImageUriToPatch, out baseImageUri)) + { + throw new ArgumentOutOfRangeException("BaseImageUriToPatch", this.BaseImageUriToPatch.ToString()); + } + + if (!String.IsNullOrEmpty(destinationUri.Uri.Query)) + { + var message = String.Format(Rsrc.AddAzureVhdCommandSASUriNotSupportedInPatchMode, destinationUri.Uri); + throw new ArgumentOutOfRangeException("Destination", message); + } + } + + var storageCredentialsFactory = CreateStorageCredentialsFactory(destinationUri); + + PathIntrinsics currentPath = SessionState.Path; + var filePath = new FileInfo(currentPath.GetUnresolvedProviderPathFromPSPath(LocalFilePath.ToString())); + + var parameters = new UploadParameters( + destinationUri, baseImageUri, filePath, OverWrite.IsPresent, + (NumberOfUploaderThreads) ?? DefaultNumberOfUploaderThreads) + { + Cmdlet = this, + BlobObjectFactory = new CloudPageBlobObjectFactory(storageCredentialsFactory, TimeSpan.FromMinutes(1)) + }; + + return parameters; + } + + private StorageCredentialsFactory CreateStorageCredentialsFactory(BlobUri destinationUri) + { + StorageCredentialsFactory storageCredentialsFactory; + + var storageClient = AzureSession.ClientFactory.CreateClient( + Profile.Context, AzureEnvironment.Endpoint.ResourceManager); + + if (StorageCredentialsFactory.IsChannelRequired(Destination)) + { + storageCredentialsFactory = new StorageCredentialsFactory(this.ResourceGroupName, storageClient, this.Profile.Context.Subscription); + } + else + { + storageCredentialsFactory = new StorageCredentialsFactory(); + } + + return storageCredentialsFactory; + } + + public override void ExecuteCmdlet() + { + var parameters = ValidateParameters(); + var vhdUploadContext = VhdUploaderModel.Upload(parameters); + WriteObject(vhdUploadContext); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageServices/CloudPageBlobObjectFactory.cs b/src/ResourceManager/Compute/Commands.Compute/StorageServices/CloudPageBlobObjectFactory.cs new file mode 100644 index 000000000000..a24ce7f5c126 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/StorageServices/CloudPageBlobObjectFactory.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Sync.Download; +using Microsoft.WindowsAzure.Commands.Sync.Upload; +using Microsoft.WindowsAzure.Storage.Blob; +using Microsoft.WindowsAzure.Storage.RetryPolicies; +using System; + +namespace Microsoft.Azure.Commands.Compute.StorageServices +{ + public class CloudPageBlobObjectFactory : ICloudPageBlobObjectFactory + { + private readonly TimeSpan delayBetweenRetries = TimeSpan.FromSeconds(10); + private readonly StorageCredentialsFactory credentialsFactory; + private TimeSpan operationTimeout; + + + public CloudPageBlobObjectFactory(StorageCredentialsFactory credentialsFactory, TimeSpan operationTimeout) + { + this.credentialsFactory = credentialsFactory; + this.operationTimeout = operationTimeout; + } + + public CloudPageBlob Create(BlobUri destination) + { + return new CloudPageBlob(new Uri(destination.BlobPath), credentialsFactory.Create(destination)); + } + + public bool CreateContainer(BlobUri destination) + { + if (String.IsNullOrEmpty(destination.Uri.Query)) + { + var destinationBlob = Create(destination); + return destinationBlob.Container.CreateIfNotExists(this.CreateRequestOptions()); + } + return true; + } + + public BlobRequestOptions CreateRequestOptions() + { + return new BlobRequestOptions + { + ServerTimeout = this.operationTimeout, + RetryPolicy = new LinearRetry(delayBetweenRetries, 5) + }; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/StorageServices/StorageCredentialsFactory.cs b/src/ResourceManager/Compute/Commands.Compute/StorageServices/StorageCredentialsFactory.cs new file mode 100644 index 000000000000..694f5de87f88 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/StorageServices/StorageCredentialsFactory.cs @@ -0,0 +1,62 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Models; +using Microsoft.Azure.Management.Storage; +using Microsoft.WindowsAzure.Commands.Sync.Download; +using Microsoft.WindowsAzure.Storage.Auth; +using System; +using Rsrc = Microsoft.Azure.Commands.Compute.Properties.Resources; + +namespace Microsoft.Azure.Commands.Compute.StorageServices +{ + public class StorageCredentialsFactory + { + private StorageManagementClient client; + private AzureSubscription currentSubscription; + public string resourceGroupName { get; set; } + + public static bool IsChannelRequired(Uri destination) + { + return String.IsNullOrEmpty(destination.Query); + } + + public StorageCredentialsFactory() + { + this.resourceGroupName = null; + } + + public StorageCredentialsFactory(string resourceGroupName, StorageManagementClient client, AzureSubscription currentSubscription) + { + this.resourceGroupName = resourceGroupName; + this.client = client; + this.currentSubscription = currentSubscription; + } + + public StorageCredentials Create(BlobUri destination) + { + if (IsChannelRequired(destination.Uri)) + { + if(currentSubscription == null) + { + throw new ArgumentException(Rsrc.StorageCredentialsFactoryCurrentSubscriptionNotSet, "SubscriptionId"); + } + var storageKeys = this.client.StorageAccounts.ListKeys(this.resourceGroupName, destination.StorageAccountName); + return new StorageCredentials(destination.StorageAccountName, storageKeys.StorageAccountKeys.Key1); + } + + return new StorageCredentials(destination.Uri.Query); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/RestartAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/RestartAzureVMCommand.cs index 9b13468de882..7c9bf3e7bbb8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/RestartAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/RestartAzureVMCommand.cs @@ -20,18 +20,10 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsLifecycle.Restart, ProfileNouns.VirtualMachine)] + [Cmdlet(VerbsLifecycle.Restart, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)] [OutputType(typeof(PSComputeLongRunningOperation))] - public class RestartAzureVMCommand : VirtualMachineBaseCmdlet + public class RestartAzureVMCommand : VirtualMachineActionBaseCmdlet { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource group name.")] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - [Parameter( Mandatory = true, Position = 1, diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs index 094c24e9b606..dd2524bc894d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs @@ -22,27 +22,18 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsData.Save, ProfileNouns.VirtualMachineImage)] + [Cmdlet(VerbsData.Save, ProfileNouns.VirtualMachineImage, DefaultParameterSetName = ResourceGroupNameParameterSet)] [OutputType(typeof(PSComputeLongRunningOperation))] - public class SaveAzureVMImageCommand : VirtualMachineBaseCmdlet + public class SaveAzureVMImageCommand : VirtualMachineActionBaseCmdlet { - public string Name { get; set; } - - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource group name.")] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - + [Alias("VMName")] [Parameter( Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, HelpMessage = "The virtual machine name.")] [ValidateNotNullOrEmpty] - public string VMName { get; set; } + public string Name { get; set; } [Parameter( Mandatory = true, @@ -90,7 +81,7 @@ public override void ExecuteCmdlet() var op = this.VirtualMachineClient.Capture( this.ResourceGroupName, - this.VMName, + this.Name, parameters); var result = Mapper.Map(op); diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SetAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SetAzureVMCommand.cs index ea87d77b7ab0..b0132e1a39e9 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SetAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SetAzureVMCommand.cs @@ -18,24 +18,12 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsCommon.Set, ProfileNouns.VirtualMachine, DefaultParameterSetName = GeneralizeVirtualMachineParamSet)] + [Cmdlet(VerbsCommon.Set, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)] [OutputType(typeof(AzureOperationResponse))] - public class SetAzureVMCommand : VirtualMachineBaseCmdlet + public class SetAzureVMCommand : VirtualMachineActionBaseCmdlet { - protected const string GeneralizeVirtualMachineParamSet = "GeneralizeVirtualMachineParamSet"; - - [Parameter( - Mandatory = true, - ParameterSetName = GeneralizeVirtualMachineParamSet, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource group name.")] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - [Parameter( Mandatory = true, - ParameterSetName = GeneralizeVirtualMachineParamSet, Position = 1, ValueFromPipelineByPropertyName = true, HelpMessage = "The virtual machine name.")] @@ -44,7 +32,6 @@ public class SetAzureVMCommand : VirtualMachineBaseCmdlet [Parameter( Mandatory = true, - ParameterSetName = GeneralizeVirtualMachineParamSet, Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = "To generalize virtual machine.")] diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StartAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StartAzureVMCommand.cs index 5abf1c954df8..f1de78c1ae0e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StartAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StartAzureVMCommand.cs @@ -20,18 +20,10 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsLifecycle.Start, ProfileNouns.VirtualMachine)] + [Cmdlet(VerbsLifecycle.Start, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)] [OutputType(typeof(PSComputeLongRunningOperation))] - public class StartAzureVMCommand : VirtualMachineBaseCmdlet + public class StartAzureVMCommand : VirtualMachineActionBaseCmdlet { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource group name.")] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - [Parameter( Mandatory = true, Position = 1, diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StopAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StopAzureVMCommand.cs index b378799cc961..bcb1df5fa81e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StopAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StopAzureVMCommand.cs @@ -22,18 +22,10 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsLifecycle.Stop, ProfileNouns.VirtualMachine)] + [Cmdlet(VerbsLifecycle.Stop, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)] [OutputType(typeof(PSComputeLongRunningOperation))] - public class StopAzureVMCommand : VirtualMachineBaseCmdlet + public class StopAzureVMCommand : VirtualMachineActionBaseCmdlet { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource group name.")] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - [Parameter( Mandatory = true, Position = 1, diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/VirtualMachineActionBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/VirtualMachineActionBaseCmdlet.cs new file mode 100644 index 000000000000..d65d8c776f8c --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/VirtualMachineActionBaseCmdlet.cs @@ -0,0 +1,61 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using System.Text.RegularExpressions; + +namespace Microsoft.Azure.Commands.Compute +{ + public abstract class VirtualMachineActionBaseCmdlet : VirtualMachineBaseCmdlet + { + protected const string ResourceGroupNameParameterSet = "ResourceGroupNameParameterSetName"; + protected const string IdParameterSet = "IdParameterSetName"; + + [Parameter( + Mandatory = true, + Position = 0, + ParameterSetName = ResourceGroupNameParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + Position = 0, + ParameterSetName = IdParameterSet, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public string Id { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (this.ParameterSetName.Equals(IdParameterSet)) + { + this.ResourceGroupName = GetResourceGroupNameFromId(this.Id); + } + } + + protected string GetResourceGroupNameFromId(string idString) + { + var match = Regex.Match(idString, @"resourceGroups/([A-Za-z0-9\-]+)/"); + return (match.Success) + ? match.Groups[1].Value + : null; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/RemoveAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/RemoveAzureVMCommand.cs index 22a91e88d3f5..698bd6d976d7 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/RemoveAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/RemoveAzureVMCommand.cs @@ -20,18 +20,10 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsCommon.Remove, ProfileNouns.VirtualMachine)] + [Cmdlet(VerbsCommon.Remove, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)] [OutputType(typeof(PSComputeLongRunningOperation))] - public class RemoveAzureVMCommand : VirtualMachineBaseCmdlet + public class RemoveAzureVMCommand : VirtualMachineActionBaseCmdlet { - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource group name.")] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - [Alias("ResourceName", "VMName")] [Parameter( Mandatory = true, diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs index 0119182d72f1..39854a732895 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/UpdateAzureVMCommand.cs @@ -12,14 +12,49 @@ // limitations under the License. // ---------------------------------------------------------------------------------- + using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using System.Collections; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsData.Update, ProfileNouns.VirtualMachine)] - public class UpdateAzureVMCommand : NewAzureVMCommand + [Cmdlet(VerbsData.Update, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)] + public class UpdateAzureVMCommand : VirtualMachineActionBaseCmdlet { - public new string Location { get; set; } + [Alias("VMProfile")] + [Parameter(Mandatory = true, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter(ValueFromPipelineByPropertyName = true)] + public Hashtable[] Tags { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + ExecuteClientAction(() => + { + var parameters = new VirtualMachine + { + HardwareProfile = this.VM.HardwareProfile, + StorageProfile = this.VM.StorageProfile, + NetworkProfile = this.VM.NetworkProfile, + OSProfile = this.VM.OSProfile, + Plan = this.VM.Plan, + AvailabilitySetReference = this.VM.AvailabilitySetReference, + Location = this.VM.Location, + Name = this.VM.Name, + Tags = this.Tags != null ? this.Tags.ToDictionary() : this.VM.Tags + }; + + var op = this.VirtualMachineClient.CreateOrUpdate(this.ResourceGroupName, parameters); + WriteObject(op); + }); + } } } 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 9ddf0dcfc4b2..dae5e40fd003 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj @@ -63,8 +63,8 @@ False ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - - ..\..\..\packages\Microsoft.Azure.Management.DataFactories.2.0.1\lib\net45\Microsoft.Azure.Management.DataFactories.dll + + ..\..\..\packages\Microsoft.Azure.Management.DataFactories.3.0.0\lib\net45\Microsoft.Azure.Management.DataFactories.dll True @@ -328,4 +328,4 @@ --> - \ No newline at end of file + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 index b88f1e3fd837..b7f11cff6a1c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/Common.ps1 @@ -37,7 +37,7 @@ Gets the default location for a provider function Get-ProviderLocation($provider) { # A Dogfood data center for ADF cmdlet mock testing - "Brazil South" + "East US 2" } <# diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json index 1a9117c80c8a..b5309aff23c5 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14995" ], "x-ms-request-id": [ - "d4988cd6-a8f3-44ba-a051-5f440d6f0eb8" + "08239781-fc13-4755-8766-1cdf97b53a0b" ], "x-ms-correlation-request-id": [ - "d4988cd6-a8f3-44ba-a051-5f440d6f0eb8" + "08239781-fc13-4755-8766-1cdf97b53a0b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040524Z:d4988cd6-a8f3-44ba-a051-5f440d6f0eb8" + "CENTRALUS:20150829T000643Z:08239781-fc13-4755-8766-1cdf97b53a0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:24 GMT" + "Sat, 29 Aug 2015 00:06:43 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8154\",\r\n \"name\": \"onesdk8154\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8844\",\r\n \"name\": \"onesdk8844\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1196" ], "x-ms-request-id": [ - "419e6f25-fb01-41a4-a3f6-8e4359fc5cfc" + "1cc8b284-65e2-4da0-8441-e649fd35dd3e" ], "x-ms-correlation-request-id": [ - "419e6f25-fb01-41a4-a3f6-8e4359fc5cfc" + "1cc8b284-65e2-4da0-8441-e649fd35dd3e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040526Z:419e6f25-fb01-41a4-a3f6-8e4359fc5cfc" + "CENTRALUS:20150829T000643Z:1cc8b284-65e2-4da0-8441-e649fd35dd3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:25 GMT" + "Sat, 29 Aug 2015 00:06:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8154/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazgxNTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8844/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazg4NDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14994" ], "x-ms-request-id": [ - "0b7dbf5a-c1b3-43d8-8e47-7f311e0d8f28" + "d675b1dd-bd1f-4620-b7c3-85d087e6d3ea" ], "x-ms-correlation-request-id": [ - "0b7dbf5a-c1b3-43d8-8e47-7f311e0d8f28" + "d675b1dd-bd1f-4620-b7c3-85d087e6d3ea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040526Z:0b7dbf5a-c1b3-43d8-8e47-7f311e0d8f28" + "CENTRALUS:20150829T000644Z:d675b1dd-bd1f-4620-b7c3-85d087e6d3ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:25 GMT" + "Sat, 29 Aug 2015 00:06:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:25495b53-1b80-4762-8da1-4e2967edeebd" + "centralus:950e5407-0ee1-4f1b-b629-d4bcecdcd541" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14995" ], "x-ms-correlation-request-id": [ - "de3d4b7c-19ff-4e88-9da8-2e6778ba0888" + "7ee96b4f-6272-4fd3-ade8-a41e88ca3cd3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040526Z:de3d4b7c-19ff-4e88-9da8-2e6778ba0888" + "CENTRALUS:20150829T000644Z:7ee96b4f-6272-4fd3-ade8-a41e88ca3cd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:26 GMT" + "Sat, 29 Aug 2015 00:06:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mjk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk1488\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk2529\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "b3e3863b-3ba7-4132-9361-9f5676452a4a" + "eaae7fe3-85fc-4f7d-8d16-05d2a347361c" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1488\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"609f1ce5-eed9-41fa-a128-46390497f9bf\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2529\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"11d0df9d-c883-4785-95ce-81db32a3eb1d\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "b81d483e-741b-4946-971f-20389164558a" + "b15d71d1-7e97-45fd-b9e4-9caf42891655" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "bc1b7d98-aa7d-42ca-af0b-d30fad259a10" + "19ebf3da-de8e-45f1-a01f-7b0cb2e31a6a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040529Z:bc1b7d98-aa7d-42ca-af0b-d30fad259a10" + "CENTRALUS:20150829T000645Z:19ebf3da-de8e-45f1-a01f-7b0cb2e31a6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:29 GMT" + "Sat, 29 Aug 2015 00:06:44 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mjk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74b2ebe8-b0a2-4d0d-af0c-784495ef78b3" + "97c023f9-393c-42d7-b30a-3a2fbea29130" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1488\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"609f1ce5-eed9-41fa-a128-46390497f9bf\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2529\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"11d0df9d-c883-4785-95ce-81db32a3eb1d\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "780bad0c-aa1d-445e-9dd9-cca2b4d52ea6" + "e91f8833-5051-42e6-b254-990001ea355e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-correlation-request-id": [ - "d5e24e96-9457-4df8-a55d-7b942bda19d3" + "7d61a20a-41b6-4cb0-a15f-d734ecdadc33" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040530Z:d5e24e96-9457-4df8-a55d-7b942bda19d3" + "CENTRALUS:20150829T000645Z:7d61a20a-41b6-4cb0-a15f-d734ecdadc33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:29 GMT" + "Sat, 29 Aug 2015 00:06:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mjk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5868b04-c385-4fae-8872-00e5b712c14f" + "b50a5323-102c-433c-9300-05d3b3b853cc" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1488\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"609f1ce5-eed9-41fa-a128-46390497f9bf\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2529\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"11d0df9d-c883-4785-95ce-81db32a3eb1d\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "4491c365-e250-436b-b95a-375c2bfba9d7" + "a5028a6e-b254-4c1c-b612-4238e381121a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-correlation-request-id": [ - "a09b4e10-8554-43b3-98eb-7ec7231999d7" + "2a0b4685-49f8-4f50-ad05-804294efc21e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040535Z:a09b4e10-8554-43b3-98eb-7ec7231999d7" + "CENTRALUS:20150829T000650Z:2a0b4685-49f8-4f50-ad05-804294efc21e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:34 GMT" + "Sat, 29 Aug 2015 00:06:49 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,16 +391,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be38384f-3853-49ce-9024-373e8936fdf3" + "3af8a3dc-8bfa-411c-9ea2-39dda3d2abcb" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Gateway foo does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", @@ -418,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "6bff4823-4c44-4fa9-b470-b64d1a909421" + "5ccb83a4-e28d-4d07-a55d-8aa5bd684051" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-correlation-request-id": [ - "9da79ac0-1959-4390-af72-92c0f1a461b0" + "c17ee341-a419-43b8-b4d6-499698165bf9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040535Z:9da79ac0-1959-4390-af72-92c0f1a461b0" + "CENTRALUS:20150829T000650Z:c17ee341-a419-43b8-b4d6-499698165bf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,7 +436,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:35 GMT" + "Sat, 29 Aug 2015 00:06:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -448,22 +448,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2b5c31f-3c07-44a2-9898-5867782b395d" + "a1ddf7e5-1b61-49ce-b458-26f1e0d6b194" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk1488\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:05:36.9244958Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk2529\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:06:51.3569223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "187" @@ -478,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "6a5e43ef-0709-4bbe-8f5b-bb8739b976d5" + "32b56b7d-4589-4b5b-a0f0-6a51d4d0b512" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14984" ], "x-ms-correlation-request-id": [ - "318fd391-3fab-4514-885b-118c304bee79" + "18e05b70-90dc-4de4-a778-018a665e73ab" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040538Z:318fd391-3fab-4514-885b-118c304bee79" + "CENTRALUS:20150829T000651Z:18e05b70-90dc-4de4-a778-018a665e73ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +496,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:37 GMT" + "Sat, 29 Aug 2015 00:06:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -508,19 +508,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b39e0269-da18-4201-9c07-001790600d75" + "f86f3efb-0361-4c05-8915-bad8056fa1c5" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk1488\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:05:36.9244958Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk2529\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:06:51.3569223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "187" @@ -535,16 +535,16 @@ "no-cache" ], "x-ms-request-id": [ - "7e889585-58d3-47af-89f4-37aab46c27c0" + "25890917-dea9-4f8e-8e98-6f76c7a53fb2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14983" ], "x-ms-correlation-request-id": [ - "4bcafb4f-7c52-45f9-9857-a0a8728d0f31" + "4fc37b11-2e16-4e3e-bb36-f80eaf1e9f7b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040538Z:4bcafb4f-7c52-45f9-9857-a0a8728d0f31" + "CENTRALUS:20150829T000651Z:4fc37b11-2e16-4e3e-bb36-f80eaf1e9f7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +553,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:38 GMT" + "Sat, 29 Aug 2015 00:06:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -565,8 +565,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {}\r\n}", "RequestHeaders": { @@ -577,13 +577,13 @@ "42" ], "x-ms-client-request-id": [ - "e4307ea4-84dc-411d-a9f1-661298652439" + "51089cd1-5d6c-43c5-a48c-1a7b91264d2b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#c611687f-cc1c-4af1-a930-1f2145f9d8ef@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#7M/Z53EnzDOMhI5O+eQYU07ACE5EhPnj716ZuX976Kk=\",\r\n \"dataFactoryName\": \"onesdk1488\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:05:36.9244958Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#72b34a55-11da-4855-843b-8ee23fa983d8@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#YEzN2INjwwzgwbE3j/rTdtkQ/StLOBeC8KXurpaehyI=\",\r\n \"dataFactoryName\": \"onesdk2529\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:06:51.3569223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "358" @@ -598,16 +598,16 @@ "no-cache" ], "x-ms-request-id": [ - "25f986e1-0d01-48d6-86b9-bd22be60c2c1" + "a835846b-5aa9-41b0-a232-0c8e30a2aed2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1190" ], "x-ms-correlation-request-id": [ - "3e0b833f-e01b-4dbc-ad2a-d07a85103756" + "f4db5400-1707-4190-9e6c-8923a76bbfee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040537Z:3e0b833f-e01b-4dbc-ad2a-d07a85103756" + "CENTRALUS:20150829T000651Z:f4db5400-1707-4190-9e6c-8923a76bbfee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,7 +616,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:36 GMT" + "Sat, 29 Aug 2015 00:06:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -628,19 +628,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo/regeneratekey?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vL3JlZ2VuZXJhdGVrZXk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo/regeneratekey?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vL3JlZ2VuZXJhdGVrZXk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fa37b04-3e7d-4c98-b952-0466feea8d9a" + "40397a5e-edd1-4d0a-a43c-494e65b724aa" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key\": \"ADF#997b0948-1a71-42ee-b16d-754504c7d74b@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#flHulsKguA0jyQHSjsy+fPhM9hDLDIOWM63eJk7FLY4=\"\r\n}", + "ResponseBody": "{\r\n \"key\": \"ADF#a5c0ed6c-d13b-4263-9b5a-7a52f7cc04c4@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#i+tAOpcK2V1HdSQtzBRZHXNwYMLSM5NTAMoYUNpxDOg=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "172" @@ -655,16 +655,16 @@ "no-cache" ], "x-ms-request-id": [ - "2bbf9f4d-f70e-4920-abda-5776ac8fdfd1" + "9f868202-fbd8-4f70-a746-aae8df280a5a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1189" ], "x-ms-correlation-request-id": [ - "3933b65b-473f-4b8e-8022-74993f6e4b16" + "bf74c422-d583-4b79-8bd2-ddecde42528a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040541Z:3933b65b-473f-4b8e-8022-74993f6e4b16" + "CENTRALUS:20150829T000652Z:bf74c422-d583-4b79-8bd2-ddecde42528a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,7 +673,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:41 GMT" + "Sat, 29 Aug 2015 00:06:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\"\r\n }\r\n}", "RequestHeaders": { @@ -697,13 +697,13 @@ "80" ], "x-ms-client-request-id": [ - "dbf2c35c-4d85-42c4-b59f-f00b7ae042b1" + "0e372f34-cbf3-46cb-83f8-a38fde5694dd" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\",\r\n \"dataFactoryName\": \"onesdk1488\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:05:36.9244958Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\",\r\n \"dataFactoryName\": \"onesdk2529\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:06:51.3569223Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "215" @@ -718,16 +718,16 @@ "no-cache" ], "x-ms-request-id": [ - "65378133-21e8-4d09-a72c-2946325e1d0a" + "922c035a-ab08-42af-8b11-c3ec46578000" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1188" ], "x-ms-correlation-request-id": [ - "b742f1e1-0791-45e3-9959-b0676e2831dd" + "794fd74c-8e9c-4457-a3d9-a4d8a6d23635" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040542Z:b742f1e1-0791-45e3-9959-b0676e2831dd" + "CENTRALUS:20150829T000653Z:794fd74c-8e9c-4457-a3d9-a4d8a6d23635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:42 GMT" + "Sat, 29 Aug 2015 00:06:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -748,16 +748,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cd57fc2-faa7-46c5-a83b-39f1aaa448c1" + "3adf921e-66cd-4f0e-a93f-9732a107a619" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -775,16 +775,16 @@ "15" ], "x-ms-request-id": [ - "a57db817-5b9e-4dfb-a1f9-d2a96f96783a" + "d8ad632a-2428-44e2-8f0c-00bafc174118" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1187" ], "x-ms-correlation-request-id": [ - "52557ff7-4bab-4acd-8fe3-fa5c5ae4eb6b" + "d96a81be-f3bf-4964-8329-bcd8f3dc0040" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040543Z:52557ff7-4bab-4acd-8fe3-fa5c5ae4eb6b" + "CENTRALUS:20150829T000653Z:d96a81be-f3bf-4964-8329-bcd8f3dc0040" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,10 +793,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:43 GMT" + "Sat, 29 Aug 2015 00:06:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo/operationresults/D520e23a9-5b0c-471c-8816-037549b52a37?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo/operationresults/De3572681-7aaf-4c99-b1c1-72447be7bf64?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -808,16 +808,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo/operationresults/D520e23a9-5b0c-471c-8816-037549b52a37?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRDUyMGUyM2E5LTViMGMtNDcxYy04ODE2LTAzNzU0OWI1MmEzNz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo/operationresults/De3572681-7aaf-4c99-b1c1-72447be7bf64?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRGUzNTcyNjgxLTdhYWYtNGM5OS1iMWMxLTcyNDQ3YmU3YmY2ND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -835,16 +835,16 @@ "15" ], "x-ms-request-id": [ - "21c5f446-5f5d-4063-9c7c-abfd1a2d0c2b" + "06e54ac4-4c5d-48ae-aa1a-6de044a2a054" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14982" ], "x-ms-correlation-request-id": [ - "b5a45828-8724-4c50-95ef-12f6d2b95e9f" + "28261550-39a3-4f19-918b-7ac280b0e135" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040544Z:b5a45828-8724-4c50-95ef-12f6d2b95e9f" + "CENTRALUS:20150829T000654Z:28261550-39a3-4f19-918b-7ac280b0e135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,10 +853,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:43 GMT" + "Sat, 29 Aug 2015 00:06:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo/operationresults/D520e23a9-5b0c-471c-8816-037549b52a37?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo/operationresults/De3572681-7aaf-4c99-b1c1-72447be7bf64?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -868,16 +868,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488/gateways/foo/operationresults/D520e23a9-5b0c-471c-8816-037549b52a37?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODgvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRDUyMGUyM2E5LTViMGMtNDcxYy04ODE2LTAzNzU0OWI1MmEzNz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529/gateways/foo/operationresults/De3572681-7aaf-4c99-b1c1-72447be7bf64?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1MjkvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRGUzNTcyNjgxLTdhYWYtNGM5OS1iMWMxLTcyNDQ3YmU3YmY2ND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -892,16 +892,16 @@ "no-cache" ], "x-ms-request-id": [ - "812af548-e0d2-435b-bb40-4b497da99389" + "ea7378fb-96da-4033-a89d-1e1e594e6eb7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14981" ], "x-ms-correlation-request-id": [ - "747d5a66-d052-4545-9427-0200c04786e9" + "880ad901-d4c6-4d36-af50-8ac26ea1c1b0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040559Z:747d5a66-d052-4545-9427-0200c04786e9" + "CENTRALUS:20150829T000709Z:880ad901-d4c6-4d36-af50-8ac26ea1c1b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,7 +910,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:05:59 GMT" + "Sat, 29 Aug 2015 00:07:08 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -922,16 +922,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8154/providers/Microsoft.DataFactory/datafactories/onesdk1488?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE0ODg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8844/providers/Microsoft.DataFactory/datafactories/onesdk2529?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI1Mjk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50fc97a2-f600-4f84-851d-43437f9e7633" + "c25d83ab-e1c6-4ebd-9f96-c9d193ab8257" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -946,16 +946,16 @@ "no-cache" ], "x-ms-request-id": [ - "cb7c860e-8b40-4955-a3c2-af384f08d1e9" + "d0faca40-802b-4fba-aae3-ddc6b05e68f7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1186" ], "x-ms-correlation-request-id": [ - "3509a082-9b7d-4f3c-a276-2494be677fa5" + "23dfc0e0-7d8f-4cb4-8322-f0e72a2cabae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040601Z:3509a082-9b7d-4f3c-a276-2494be677fa5" + "CENTRALUS:20150829T000709Z:23dfc0e0-7d8f-4cb4-8322-f0e72a2cabae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -964,7 +964,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:00 GMT" + "Sat, 29 Aug 2015 00:07:08 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -978,8 +978,8 @@ ], "Names": { "Test-DataFactoryGateway": [ - "onesdk1488", - "onesdk8154" + "onesdk2529", + "onesdk8844" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json index a7d312aaf419..aa322761adbc 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14993" ], "x-ms-request-id": [ - "48967116-d27e-45d0-bd6d-cb01e7dfca88" + "586329d1-687c-4ed8-831f-65edbb5e2285" ], "x-ms-correlation-request-id": [ - "48967116-d27e-45d0-bd6d-cb01e7dfca88" + "586329d1-687c-4ed8-831f-65edbb5e2285" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040638Z:48967116-d27e-45d0-bd6d-cb01e7dfca88" + "CENTRALUS:20150829T000743Z:586329d1-687c-4ed8-831f-65edbb5e2285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:38 GMT" + "Sat, 29 Aug 2015 00:07:42 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8381\",\r\n \"name\": \"onesdk8381\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk4615\",\r\n \"name\": \"onesdk4615\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1195" ], "x-ms-request-id": [ - "35dd3bdc-0a92-4617-86b9-1cb53a4e13b7" + "112a6590-28cb-4661-8813-0066fb2dec8f" ], "x-ms-correlation-request-id": [ - "35dd3bdc-0a92-4617-86b9-1cb53a4e13b7" + "112a6590-28cb-4661-8813-0066fb2dec8f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040639Z:35dd3bdc-0a92-4617-86b9-1cb53a4e13b7" + "CENTRALUS:20150829T000743Z:112a6590-28cb-4661-8813-0066fb2dec8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:39 GMT" + "Sat, 29 Aug 2015 00:07:42 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8381/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazgzODEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk4615/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14992" ], "x-ms-request-id": [ - "ffc00ad8-7d5e-4704-9892-357223872046" + "bce51ac6-d0f3-49a6-8883-ead1e102f1a3" ], "x-ms-correlation-request-id": [ - "ffc00ad8-7d5e-4704-9892-357223872046" + "bce51ac6-d0f3-49a6-8883-ead1e102f1a3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040639Z:ffc00ad8-7d5e-4704-9892-357223872046" + "CENTRALUS:20150829T000743Z:bce51ac6-d0f3-49a6-8883-ead1e102f1a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:39 GMT" + "Sat, 29 Aug 2015 00:07:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:ddc324ea-ffb7-4768-9636-35fdcdd5ae88" + "centralus:1eb7710c-a5d2-4e38-93a8-ff7eb8e335ca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14988" ], "x-ms-correlation-request-id": [ - "77b62aa4-538b-4715-8860-49d54777c771" + "629c00e1-fb31-4422-9eed-51d41b1d30bd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040640Z:77b62aa4-538b-4715-8860-49d54777c771" + "CENTRALUS:20150829T000743Z:629c00e1-fb31-4422-9eed-51d41b1d30bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:39 GMT" + "Sat, 29 Aug 2015 00:07:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk9563\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk3593\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "1fd97d35-d5a6-4cfd-b5a8-b5b33339a2e0" + "14741bbd-3089-4fdd-892e-2c2f2455f4d0" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9563\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"673da7d1-4781-4830-abfd-b5e9c8993c9e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3593\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b30ed8e0-324d-414e-8ac1-bfa79e4f018e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "87b59718-62fe-4fe7-9eab-52d96bb5da21" + "6489861b-f428-4637-ad8f-e35957f0a6ef" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1197" ], "x-ms-correlation-request-id": [ - "6e03d594-1690-4134-8313-07969bbeaac6" + "b71b9f8e-4b81-448c-9d1a-71bb3c35567d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040643Z:6e03d594-1690-4134-8313-07969bbeaac6" + "CENTRALUS:20150829T000744Z:b71b9f8e-4b81-448c-9d1a-71bb3c35567d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:42 GMT" + "Sat, 29 Aug 2015 00:07:43 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9956e47b-554e-403a-9dd4-349b102cfadc" + "36ac906e-7639-44d5-aa95-92a9780352d8" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9563\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"673da7d1-4781-4830-abfd-b5e9c8993c9e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3593\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b30ed8e0-324d-414e-8ac1-bfa79e4f018e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "5f2189b9-e218-4602-86bd-baeafe4883dd" + "ca83c5e8-f01f-4d81-8068-e54a3da18121" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14993" ], "x-ms-correlation-request-id": [ - "6e3bb219-34f4-49d6-b1b3-510e600aa68b" + "8f9c54b7-22b6-4901-80d0-9e351818fd46" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040643Z:6e3bb219-34f4-49d6-b1b3-510e600aa68b" + "CENTRALUS:20150829T000745Z:8f9c54b7-22b6-4901-80d0-9e351818fd46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:42 GMT" + "Sat, 29 Aug 2015 00:07:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "540e87dd-b805-407e-8540-cf39d9d7b7ab" + "0266aa26-9dff-4036-8aee-c63d0b07ad2e" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk9563\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"673da7d1-4781-4830-abfd-b5e9c8993c9e\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3593\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b30ed8e0-324d-414e-8ac1-bfa79e4f018e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "b638df60-5e04-48e0-af93-56100277784e" + "c920beae-b977-4aa6-b0d9-a28e214e8bcf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14992" ], "x-ms-correlation-request-id": [ - "f8b67063-b7f3-4e22-93d4-85736f4713a7" + "637afda7-a65b-4a8f-b29b-24c2866756e9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040648Z:f8b67063-b7f3-4e22-93d4-85736f4713a7" + "CENTRALUS:20150829T000750Z:637afda7-a65b-4a8f-b29b-24c2866756e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:48 GMT" + "Sat, 29 Aug 2015 00:07:50 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,16 +391,76 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e6dc659-75d4-4e22-91a1-8f7c8ba978e9" + "4a8aa629-f737-4f9a-a2e4-86f09227c3e9" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk3593\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"b30ed8e0-324d-414e-8ac1-bfa79e4f018e\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "440" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e645d172-4014-47f1-b416-f590bc8a0459" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "f0ef47d6-8c72-4864-9298-8f7f2299bd41" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T000755Z:f0ef47d6-8c72-4864-9298-8f7f2299bd41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:07:54 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e33a436c-4dbc-4968-b61c-4b0e48c44a47" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Gateway foo does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", @@ -418,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "6ebe5628-f5b5-4986-aaed-0e9a225ae935" + "5860eb65-99cb-4866-890e-bbc3e8a5e3b5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14990" ], "x-ms-correlation-request-id": [ - "632db1eb-5879-4ec5-ad07-bab0daa5f575" + "fcc99d98-5c82-4d7d-81c8-71145d6ad758" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040649Z:632db1eb-5879-4ec5-ad07-bab0daa5f575" + "CENTRALUS:20150829T000755Z:fcc99d98-5c82-4d7d-81c8-71145d6ad758" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,7 +496,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:49 GMT" + "Sat, 29 Aug 2015 00:07:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -448,22 +508,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1b8b9d3-519a-495f-97cb-f377c9fc183b" + "f837915c-c7aa-4b1c-ad18-1573e0371f58" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk9563\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:06:50.1515835Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk3593\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:07:56.3641587Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "187" @@ -478,16 +538,16 @@ "no-cache" ], "x-ms-request-id": [ - "f6a972f7-8802-4563-922e-d91b07b22e59" + "e09947dc-33c3-4edc-8ee3-87d87b3a00dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14989" ], "x-ms-correlation-request-id": [ - "e69de46d-f875-43c5-84cc-04048d401d73" + "94432f5b-883b-421d-a431-b738b35cb06d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040650Z:e69de46d-f875-43c5-84cc-04048d401d73" + "CENTRALUS:20150829T000756Z:94432f5b-883b-421d-a431-b738b35cb06d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +556,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:50 GMT" + "Sat, 29 Aug 2015 00:07:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -508,19 +568,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efe357cd-81c4-4418-8407-1257092a4e22" + "39ba534b-5540-42a5-9006-923779c9698a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk9563\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:06:50.1515835Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"onesdk3593\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:07:56.3641587Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "187" @@ -535,16 +595,16 @@ "no-cache" ], "x-ms-request-id": [ - "bea928a3-0011-45ce-a2bd-7f03c4dd3188" + "13fb90a6-8f02-4b2c-9a0f-5f78abc0f645" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14988" ], "x-ms-correlation-request-id": [ - "ff381a28-9cba-4df6-b33c-d011efb90ebd" + "dfba0df7-05f3-4e6a-8742-666fbe08ca70" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040651Z:ff381a28-9cba-4df6-b33c-d011efb90ebd" + "CENTRALUS:20150829T000756Z:dfba0df7-05f3-4e6a-8742-666fbe08ca70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,7 +613,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:51 GMT" + "Sat, 29 Aug 2015 00:07:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -565,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {}\r\n}", "RequestHeaders": { @@ -577,13 +637,13 @@ "42" ], "x-ms-client-request-id": [ - "a4702988-9a48-4481-a8ea-5683f844823d" + "ccc84e52-14b6-481d-94c9-7e9037ce1c50" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#7caa5b19-2443-4d13-bad7-0e7a5e654d89@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#PvZgBXvH3fp6AiXWIpxQG2XPiJbAHgXG5VQXaNispz8=\",\r\n \"dataFactoryName\": \"onesdk9563\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:06:50.1515835Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"key\": \"ADF#ed5fb4cd-60b1-4de3-b45a-4abeb6d8ec78@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#T4FdO39abY32MyhcTlqukonbxCLNEAz3Fn0TIhYMCbE=\",\r\n \"dataFactoryName\": \"onesdk3593\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:07:56.3641587Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "358" @@ -598,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "117ee9b5-6339-4c91-8910-5ee18121e593" + "a21663ac-55a4-483c-bfb0-05b9e4cff784" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1196" ], "x-ms-correlation-request-id": [ - "8e38aba1-244a-433c-b21f-c01a37acb0cf" + "adff03ea-a328-47ba-9509-db1f15246492" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040650Z:8e38aba1-244a-433c-b21f-c01a37acb0cf" + "CENTRALUS:20150829T000756Z:adff03ea-a328-47ba-9509-db1f15246492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,7 +676,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:50 GMT" + "Sat, 29 Aug 2015 00:07:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -628,19 +688,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo/regeneratekey?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vL3JlZ2VuZXJhdGVrZXk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo/regeneratekey?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vL3JlZ2VuZXJhdGVrZXk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e9c7eae-8bbe-49b3-9497-54b564774c74" + "ba4e9e00-4ce2-4b03-8ffd-d6dca5f456d3" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"key\": \"ADF#01ef9959-d7f1-4777-a798-36c2caa20d0f@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@bb997f91-a875-490c-b4ec-961b250daa64@wu#4HuhG+ZoouzJalSubgBiPBk+bqKG9XKtP97vmRfRwcI=\"\r\n}", + "ResponseBody": "{\r\n \"key\": \"ADF#491d27f4-f7d1-4d26-ae51-35754c1884cc@4431ebb2-5a07-4d85-85cf-7af34ae85ff5@8c0d1801-e863-44af-82e6-fb2f0c00f2ae@wu#zY7mmiwCHAhkWYyajk+dJ6lkJ5PagJaaOIQ0Op+obos=\"\r\n}", "ResponseHeaders": { "Content-Length": [ "172" @@ -655,16 +715,16 @@ "no-cache" ], "x-ms-request-id": [ - "d656fc65-c06f-4cc7-9cda-d4de27f3467e" + "2fede8e3-b509-4c0a-a2c6-1df2fffac508" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1195" ], "x-ms-correlation-request-id": [ - "80e0fa11-ae13-440d-917d-3cff071fb738" + "f86710b2-8910-4865-95fe-e4e56f85de31" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040652Z:80e0fa11-ae13-440d-917d-3cff071fb738" + "CENTRALUS:20150829T000757Z:f86710b2-8910-4865-95fe-e4e56f85de31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,7 +733,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:52 GMT" + "Sat, 29 Aug 2015 00:07:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -685,8 +745,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\"\r\n }\r\n}", "RequestHeaders": { @@ -697,13 +757,13 @@ "80" ], "x-ms-client-request-id": [ - "dcf230b6-6007-4b3f-a042-fc9a9f86e9eb" + "dc84f059-9fd8-4af4-9c63-42c19c838a70" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\",\r\n \"dataFactoryName\": \"onesdk9563\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-07-31T04:06:50.1515835Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"description\": \"description\",\r\n \"dataFactoryName\": \"onesdk3593\",\r\n \"status\": \"NeedRegistration\",\r\n \"versionStatus\": \"None\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2015-08-29T00:07:56.3641587Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "215" @@ -718,16 +778,16 @@ "no-cache" ], "x-ms-request-id": [ - "98b8dad1-bd29-4dac-b85e-0cbf7bb9a41d" + "9ba2336a-f5aa-4e66-9630-2f2e6b0cefc6" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1194" ], "x-ms-correlation-request-id": [ - "b3f397a7-b8e7-4eb6-9481-f5fac3304e6c" + "f861404b-4fd8-4aeb-beec-f7106624ee08" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040653Z:b3f397a7-b8e7-4eb6-9481-f5fac3304e6c" + "CENTRALUS:20150829T000758Z:f861404b-4fd8-4aeb-beec-f7106624ee08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +796,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:53 GMT" + "Sat, 29 Aug 2015 00:07:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -748,16 +808,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1a2b171-8095-4930-80de-1b493f1657c4" + "45cfa279-1c0f-4c54-82f2-9412fd31d0ef" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -775,16 +835,16 @@ "15" ], "x-ms-request-id": [ - "31b21aca-46d4-449f-88e2-b04ca0e12d64" + "122eef15-6ce3-4b56-927c-ebbfd94ed709" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1193" ], "x-ms-correlation-request-id": [ - "8a372047-d0cb-4e3f-ba13-d0d74bdbae6b" + "436dad96-8490-4390-aaf5-65688fb2c44c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040654Z:8a372047-d0cb-4e3f-ba13-d0d74bdbae6b" + "CENTRALUS:20150829T000758Z:436dad96-8490-4390-aaf5-65688fb2c44c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,10 +853,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:54 GMT" + "Sat, 29 Aug 2015 00:07:58 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo/operationresults/D345e4ec6-e51c-49d0-aa84-cc2add8a66e6?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo/operationresults/D71909113-fd0c-4e51-82eb-616b7d47a56e?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -808,16 +868,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo/operationresults/D345e4ec6-e51c-49d0-aa84-cc2add8a66e6?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRDM0NWU0ZWM2LWU1MWMtNDlkMC1hYTg0LWNjMmFkZDhhNjZlNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo/operationresults/D71909113-fd0c-4e51-82eb-616b7d47a56e?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRDcxOTA5MTEzLWZkMGMtNGU1MS04MmViLTYxNmI3ZDQ3YTU2ZT9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -835,16 +895,16 @@ "15" ], "x-ms-request-id": [ - "2e21592b-28bb-493e-a4ed-a0242c7cc5ac" + "f3e934d0-0912-4bec-8716-d12399752229" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14987" ], "x-ms-correlation-request-id": [ - "e4bb1ce8-5c62-470b-8e18-7d85e50c70fd" + "3036961f-4d67-4b4c-ba2b-bd6fdb961172" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040654Z:e4bb1ce8-5c62-470b-8e18-7d85e50c70fd" + "CENTRALUS:20150829T000758Z:3036961f-4d67-4b4c-ba2b-bd6fdb961172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,10 +913,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:06:54 GMT" + "Sat, 29 Aug 2015 00:07:58 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo/operationresults/D345e4ec6-e51c-49d0-aa84-cc2add8a66e6?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo/operationresults/D71909113-fd0c-4e51-82eb-616b7d47a56e?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -868,16 +928,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563/gateways/foo/operationresults/D345e4ec6-e51c-49d0-aa84-cc2add8a66e6?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjMvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRDM0NWU0ZWM2LWU1MWMtNDlkMC1hYTg0LWNjMmFkZDhhNjZlNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593/gateways/foo/operationresults/D71909113-fd0c-4e51-82eb-616b7d47a56e?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTMvZ2F0ZXdheXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvRDcxOTA5MTEzLWZkMGMtNGU1MS04MmViLTYxNmI3ZDQ3YTU2ZT9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -892,16 +952,16 @@ "no-cache" ], "x-ms-request-id": [ - "a3618d28-b7cf-4172-8c25-7267e6781116" + "c7bee572-080f-4e33-b0b7-29e3aa7aff31" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14986" ], "x-ms-correlation-request-id": [ - "f5addddc-d9cf-4264-9f31-c708427d1de5" + "782bdae7-014c-4ed4-8ccf-b29afeb6da35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040710Z:f5addddc-d9cf-4264-9f31-c708427d1de5" + "CENTRALUS:20150829T000814Z:782bdae7-014c-4ed4-8ccf-b29afeb6da35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,7 +970,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:09 GMT" + "Sat, 29 Aug 2015 00:08:13 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -922,16 +982,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8381/providers/Microsoft.DataFactory/datafactories/onesdk9563?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazgzODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk1NjM/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk4615/providers/Microsoft.DataFactory/datafactories/onesdk3593?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM1OTM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "591c78bd-bcad-4950-ba29-de93c6ebad24" + "45d4a572-356c-474d-a17a-7562fdf0a1f8" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -946,16 +1006,16 @@ "no-cache" ], "x-ms-request-id": [ - "35a7a5de-b371-4946-911c-cfbe7a220eca" + "b683a45b-7e2b-4d94-851b-ad006273ab88" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1192" ], "x-ms-correlation-request-id": [ - "e5be4bf5-24a2-4683-ad64-b74d1d8d0172" + "74519a37-c75b-4004-bcef-75df69233209" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040712Z:e5be4bf5-24a2-4683-ad64-b74d1d8d0172" + "CENTRALUS:20150829T000814Z:74519a37-c75b-4004-bcef-75df69233209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -964,7 +1024,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:12 GMT" + "Sat, 29 Aug 2015 00:08:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -978,8 +1038,8 @@ ], "Names": { "Test-DataFactoryGatewayWithDataFactoryParameter": [ - "onesdk9563", - "onesdk8381" + "onesdk3593", + "onesdk4615" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json index f2f468ee2134..b1651fa8c3a3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14994" ], "x-ms-request-id": [ - "f3b12cf2-31df-4a84-a171-32ff20343327" + "5ac69405-c517-4bdd-a57a-236aa5bef7fb" ], "x-ms-correlation-request-id": [ - "f3b12cf2-31df-4a84-a171-32ff20343327" + "5ac69405-c517-4bdd-a57a-236aa5bef7fb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040749Z:f3b12cf2-31df-4a84-a171-32ff20343327" + "CENTRALUS:20150829T000848Z:5ac69405-c517-4bdd-a57a-236aa5bef7fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:49 GMT" + "Sat, 29 Aug 2015 00:08:47 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3160\",\r\n \"name\": \"onesdk3160\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1387\",\r\n \"name\": \"onesdk1387\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "5dd8505a-ea0c-4b19-a763-0b3ba34988c2" + "77426237-4edd-438d-9f99-5b3085d4d088" ], "x-ms-correlation-request-id": [ - "5dd8505a-ea0c-4b19-a763-0b3ba34988c2" + "77426237-4edd-438d-9f99-5b3085d4d088" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040750Z:5dd8505a-ea0c-4b19-a763-0b3ba34988c2" + "CENTRALUS:20150829T000848Z:77426237-4edd-438d-9f99-5b3085d4d088" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:49 GMT" + "Sat, 29 Aug 2015 00:08:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3160/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazMxNjAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1387/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazEzODcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14993" ], "x-ms-request-id": [ - "ec3ac764-6bd9-404a-adb5-1f3ddcda4ca9" + "a7af3df1-7b3b-40a4-bdcc-79a33b290bd7" ], "x-ms-correlation-request-id": [ - "ec3ac764-6bd9-404a-adb5-1f3ddcda4ca9" + "a7af3df1-7b3b-40a4-bdcc-79a33b290bd7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040751Z:ec3ac764-6bd9-404a-adb5-1f3ddcda4ca9" + "CENTRALUS:20150829T000848Z:a7af3df1-7b3b-40a4-bdcc-79a33b290bd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:50 GMT" + "Sat, 29 Aug 2015 00:08:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:0a5add1e-8922-4282-9f4a-35134467a23a" + "centralus:078cacd2-f18e-47be-ab86-f4a97555a4a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14985" ], "x-ms-correlation-request-id": [ - "99152214-43d5-4479-b555-1603cb3bf508" + "3652d3f2-873e-45c7-aad2-42df08b56228" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040751Z:99152214-43d5-4479-b555-1603cb3bf508" + "CENTRALUS:20150829T000848Z:3652d3f2-873e-45c7-aad2-42df08b56228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:50 GMT" + "Sat, 29 Aug 2015 00:08:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3MDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY1NzA/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk1708\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk6570\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "0d62454e-4de1-4b9a-9c1b-ace6cea6304b" + "0174133b-c1bb-42a9-86ff-977e31643737" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1708\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1032b0c9-8497-48f5-b3b4-1976fd670bd1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6570\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fecc268b-a1a4-4595-8e99-6a8e3c3ad7f0\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "66eff8f9-3aec-4121-a736-9162e71ec683" + "b357cda9-0b57-47bc-8cb2-e3d3e2ad03b9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1184" ], "x-ms-correlation-request-id": [ - "f452f354-6583-444a-9030-16373e1039e2" + "11de93cd-6955-4778-b0c1-5093b612a9c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040754Z:f452f354-6583-444a-9030-16373e1039e2" + "CENTRALUS:20150829T000849Z:11de93cd-6955-4778-b0c1-5093b612a9c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:53 GMT" + "Sat, 29 Aug 2015 00:08:49 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3MDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY1NzA/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55912a47-2212-4ae4-8d03-a6c044c4adb4" + "94074ab9-24dc-4090-9c25-593bb05029fc" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1708\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1032b0c9-8497-48f5-b3b4-1976fd670bd1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6570\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fecc268b-a1a4-4595-8e99-6a8e3c3ad7f0\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "4d4ff88d-906f-49da-98d4-c8a42b6753e5" + "df889407-e651-4a2e-aff6-278c6e40bdb1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14979" ], "x-ms-correlation-request-id": [ - "3abcda42-2d07-40e7-8e89-fc88d083ed54" + "6ab37bae-629a-4d72-b37d-156b3f69f976" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040754Z:3abcda42-2d07-40e7-8e89-fc88d083ed54" + "CENTRALUS:20150829T000849Z:6ab37bae-629a-4d72-b37d-156b3f69f976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:54 GMT" + "Sat, 29 Aug 2015 00:08:49 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3MDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY1NzA/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edb1ee78-e46a-43ba-a5c9-c1fc574d7efb" + "c95d86cc-3eb6-4e38-a409-6e493aef7a05" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1708\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1032b0c9-8497-48f5-b3b4-1976fd670bd1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6570\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fecc268b-a1a4-4595-8e99-6a8e3c3ad7f0\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "f47225e2-497f-40b3-a2ce-e91cb14290af" + "6fda962a-3a2b-42c2-a3c6-93a2756c887b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14978" ], "x-ms-correlation-request-id": [ - "6e7cfe7d-4bd4-4a94-9d27-93d8cd3db127" + "4f227981-9449-443e-a10c-3b4a7aa17ae3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040759Z:6e7cfe7d-4bd4-4a94-9d27-93d8cd3db127" + "CENTRALUS:20150829T000855Z:4f227981-9449-443e-a10c-3b4a7aa17ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:59 GMT" + "Sat, 29 Aug 2015 00:08:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,16 +391,76 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3160/providers/Microsoft.DataFactory/datafactories/onesdk1708/gateways/gwname?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxNjAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3MDgvZ2F0ZXdheXMvZ3duYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY1NzA/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b5dbf14-61d1-45bf-95c4-79ea52e5979c" + "f3095792-c9cf-4acd-954c-11c32dce8013" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk6570\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fecc268b-a1a4-4595-8e99-6a8e3c3ad7f0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "440" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df7101d6-e61c-44a1-9a49-df2e4cdd31a4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "7c7aeb9b-12bd-47cd-a5c3-ba01d5796314" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T000900Z:7c7aeb9b-12bd-47cd-a5c3-ba01d5796314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:08:59 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1387/providers/Microsoft.DataFactory/datafactories/onesdk6570/gateways/gwname?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY1NzAvZ2F0ZXdheXMvZ3duYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bedfd85-de08-4791-8367-4d95b3396734" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Gateway gwname does not exist.\",\r\n \"code\": \"GatewayNotFound\"\r\n}", @@ -418,16 +478,16 @@ "no-cache" ], "x-ms-request-id": [ - "3277e55c-dfac-41c6-a4bc-0ba8e2f3ef96" + "66ba7f81-374b-458e-bb74-71e7d6f773eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14976" ], "x-ms-correlation-request-id": [ - "007fdce5-303c-47a8-a387-cf9b47416690" + "60e93e7f-37cc-4a88-b890-b013e9178102" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040800Z:007fdce5-303c-47a8-a387-cf9b47416690" + "CENTRALUS:20150829T000900Z:60e93e7f-37cc-4a88-b890-b013e9178102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,7 +496,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:07:59 GMT" + "Sat, 29 Aug 2015 00:08:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -450,8 +510,8 @@ ], "Names": { "Test-GetNonExistingDataFactoryGateway": [ - "onesdk1708", - "onesdk3160" + "onesdk6570", + "onesdk1387" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json index a873b8f89333..48804785ab76 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14999" ], "x-ms-request-id": [ - "cc0d9b9c-53bf-4078-bd05-4fde38c62830" + "9b49bc8c-03c9-492e-b378-445ba558f336" ], "x-ms-correlation-request-id": [ - "cc0d9b9c-53bf-4078-bd05-4fde38c62830" + "9b49bc8c-03c9-492e-b378-445ba558f336" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041715Z:cc0d9b9c-53bf-4078-bd05-4fde38c62830" + "CENTRALUS:20150829T000251Z:9b49bc8c-03c9-492e-b378-445ba558f336" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:14 GMT" + "Sat, 29 Aug 2015 00:02:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1506\",\r\n \"name\": \"onesdk1506\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5889\",\r\n \"name\": \"onesdk5889\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1199" ], "x-ms-request-id": [ - "a9b87ad8-79ff-4dea-a904-6d0ed8393f0c" + "dd9d3c9a-a286-40b4-87a7-1ccd807e29e3" ], "x-ms-correlation-request-id": [ - "a9b87ad8-79ff-4dea-a904-6d0ed8393f0c" + "dd9d3c9a-a286-40b4-87a7-1ccd807e29e3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041716Z:a9b87ad8-79ff-4dea-a904-6d0ed8393f0c" + "CENTRALUS:20150829T000252Z:dd9d3c9a-a286-40b4-87a7-1ccd807e29e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:15 GMT" + "Sat, 29 Aug 2015 00:02:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1506/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazE1MDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5889/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazU4ODkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14998" ], "x-ms-request-id": [ - "ef732239-4db5-4a02-a528-be8913ac5035" + "f9d25152-52f4-416a-9e02-2d4b9646645f" ], "x-ms-correlation-request-id": [ - "ef732239-4db5-4a02-a528-be8913ac5035" + "f9d25152-52f4-416a-9e02-2d4b9646645f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041716Z:ef732239-4db5-4a02-a528-be8913ac5035" + "CENTRALUS:20150829T000252Z:f9d25152-52f4-416a-9e02-2d4b9646645f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:16 GMT" + "Sat, 29 Aug 2015 00:02:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:80503d3e-b4ed-4a2a-b1e8-155270b6ea89" + "centralus:8093a979-f4a5-4b4e-a1f4-94782601a65f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14999" ], "x-ms-correlation-request-id": [ - "59e9199d-7f71-4231-9c87-2da51ab872b0" + "cd07ddb6-4aa8-4603-96be-9837ae673541" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041717Z:59e9199d-7f71-4231-9c87-2da51ab872b0" + "CENTRALUS:20150829T000252Z:cd07ddb6-4aa8-4603-96be-9837ae673541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:16 GMT" + "Sat, 29 Aug 2015 00:02:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU0Njg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk5468\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "96f36ef2-7e64-49ac-a1c3-7d370d0340b6" + "58ff0f32-4f5c-48e5-9d36-f85664ec76eb" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5468\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"0aa4cccf-cd17-4215-913f-24d2c42d5594\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84ac9f26-0c54-41f4-aefb-3ce2656d5bc1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "0a914a7d-4f41-439f-a0da-b5fbea523172" + "a08d1c28-df6e-474a-8e07-11f3176c817f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1199" ], "x-ms-correlation-request-id": [ - "c8245549-a6a5-43e8-862d-9591790aedc3" + "cf18c10a-2430-4a13-83ec-1158e9d19a75" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041720Z:c8245549-a6a5-43e8-862d-9591790aedc3" + "CENTRALUS:20150829T000253Z:cf18c10a-2430-4a13-83ec-1158e9d19a75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:19 GMT" + "Sat, 29 Aug 2015 00:02:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU0Njg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e199de48-1e0b-4675-8e8e-0d305dd100c0" + "877b69bc-dbf4-4bc6-82bd-89c1907b9de4" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5468\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"0aa4cccf-cd17-4215-913f-24d2c42d5594\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84ac9f26-0c54-41f4-aefb-3ce2656d5bc1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "8683f132-7ae2-46ae-989b-698bd3fa4dab" + "3b3cf5e7-c999-4329-9ad4-2e1f14777774" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14999" ], "x-ms-correlation-request-id": [ - "7e037f6a-2b32-4005-91a9-5e0f0f3609b9" + "e2b75431-86ce-43e9-9085-2f19061c83e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041720Z:7e037f6a-2b32-4005-91a9-5e0f0f3609b9" + "CENTRALUS:20150829T000253Z:e2b75431-86ce-43e9-9085-2f19061c83e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:19 GMT" + "Sat, 29 Aug 2015 00:02:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU0Njg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b134334-1907-45ee-8b5c-74bcc993d0bf" + "0805e2fa-d14c-432c-909c-8017d729b577" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5468\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"0aa4cccf-cd17-4215-913f-24d2c42d5594\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84ac9f26-0c54-41f4-aefb-3ce2656d5bc1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "1bb1b59f-d9c0-4fb7-ae72-231ba21c8f25" + "ef4f3214-7be2-4788-9a93-6da7b4876c3f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14998" ], "x-ms-correlation-request-id": [ - "15e47421-67fe-42ab-9b4f-95484a4053ef" + "fa5e1b47-7a16-4812-9924-f4517db41af9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041725Z:15e47421-67fe-42ab-9b4f-95484a4053ef" + "CENTRALUS:20150829T000259Z:fa5e1b47-7a16-4812-9924-f4517db41af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:24 GMT" + "Sat, 29 Aug 2015 00:02:58 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU0Njg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "229b2f1e-5f06-4fa9-9d45-23251b8a3d39" + "af811c3f-e2f8-40ad-8d2b-15fa6d1226b3" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5468\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"0aa4cccf-cd17-4215-913f-24d2c42d5594\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84ac9f26-0c54-41f4-aefb-3ce2656d5bc1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "bfdcb32a-c04d-44d4-947a-4164b6e2635d" + "0668792c-e1be-42c4-8b3d-140f31d87c39" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14997" ], "x-ms-correlation-request-id": [ - "625edbd0-1101-4e0d-8635-2aff6158a6fe" + "eb9306c9-ba2c-4fba-97ec-65bd7ecfffdf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041730Z:625edbd0-1101-4e0d-8635-2aff6158a6fe" + "CENTRALUS:20150829T000304Z:eb9306c9-ba2c-4fba-97ec-65bd7ecfffdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:30 GMT" + "Sat, 29 Aug 2015 00:03:03 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -451,22 +451,82 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU0Njg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "faddfa25-6376-46dc-a7f9-02ebe0f0b072" + "5c0cc0e6-b72c-4ec3-be5f-e0137ad4525d" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84ac9f26-0c54-41f4-aefb-3ce2656d5bc1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "440" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f889959-6958-47e8-a27c-2c99b3bd3ae9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "afd91883-5c7a-4b93-b513-db59cdc1adb1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T000309Z:afd91883-5c7a-4b93-b513-db59cdc1adb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:03:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5aa1cc7d-d278-4f87-97ca-929feb8e474a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5468\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"0aa4cccf-cd17-4215-913f-24d2c42d5594\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2466\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"84ac9f26-0c54-41f4-aefb-3ce2656d5bc1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -478,16 +538,16 @@ "no-cache" ], "x-ms-request-id": [ - "f33cb807-4b96-47a7-8ccd-1057661871f9" + "2bba6839-c5f9-46fb-a1d7-0a74b0fbd5d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14995" ], "x-ms-correlation-request-id": [ - "45251742-6596-4255-93e9-7799b8a8296b" + "bccc5072-3967-4920-be0c-e10b439925b6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041731Z:45251742-6596-4255-93e9-7799b8a8296b" + "CENTRALUS:20150829T000309Z:bccc5072-3967-4920-be0c-e10b439925b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +556,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:30 GMT" + "Sat, 29 Aug 2015 00:03:08 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -508,16 +568,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1506/providers/Microsoft.DataFactory/datafactories/onesdk5468?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU0Njg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5889/providers/Microsoft.DataFactory/datafactories/onesdk2466?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7389c84d-1eea-436e-9f27-e4d0eb9cf1b7" + "68026f5e-a7d7-4b16-af6c-cd9f1657224b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -532,16 +592,16 @@ "no-cache" ], "x-ms-request-id": [ - "988eade4-1e41-478f-8072-41fd557377fe" + "b0fe01c2-5112-41b8-819f-bd715dc26807" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1198" ], "x-ms-correlation-request-id": [ - "7fceaed2-0abb-4e64-ae92-6d3aa4a6d039" + "2f51ba10-59aa-4fc2-a0fd-352f621fe304" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041732Z:7fceaed2-0abb-4e64-ae92-6d3aa4a6d039" + "CENTRALUS:20150829T000310Z:2f51ba10-59aa-4fc2-a0fd-352f621fe304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,7 +610,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:17:31 GMT" + "Sat, 29 Aug 2015 00:03:10 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -564,8 +624,8 @@ ], "Names": { "Test-CreateDataFactory": [ - "onesdk5468", - "onesdk1506" + "onesdk2466", + "onesdk5889" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json index 0bceaf0a8ffe..2ad12135d54c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14991" ], "x-ms-request-id": [ - "9a6eb3f8-1779-44da-9141-d9382fe60fab" + "7072936a-e8dc-4f21-9c75-1b6b5c49ed38" ], "x-ms-correlation-request-id": [ - "9a6eb3f8-1779-44da-9141-d9382fe60fab" + "7072936a-e8dc-4f21-9c75-1b6b5c49ed38" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041601Z:9a6eb3f8-1779-44da-9141-d9382fe60fab" + "CENTRALUS:20150829T001052Z:7072936a-e8dc-4f21-9c75-1b6b5c49ed38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:00 GMT" + "Sat, 29 Aug 2015 00:10:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5249\",\r\n \"name\": \"onesdk5249\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1897\",\r\n \"name\": \"onesdk1897\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1195" ], "x-ms-request-id": [ - "788a1003-6fb0-4ff4-8242-976807519989" + "35051baa-7b42-47af-b4e0-664236b2e496" ], "x-ms-correlation-request-id": [ - "788a1003-6fb0-4ff4-8242-976807519989" + "35051baa-7b42-47af-b4e0-664236b2e496" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041602Z:788a1003-6fb0-4ff4-8242-976807519989" + "CENTRALUS:20150829T001052Z:35051baa-7b42-47af-b4e0-664236b2e496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:01 GMT" + "Sat, 29 Aug 2015 00:10:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5249/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1897/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazE4OTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14990" ], "x-ms-request-id": [ - "e20e5892-a345-457b-9cfe-09d0584e787e" + "9dadba7d-9567-4f91-b644-cedd92b72948" ], "x-ms-correlation-request-id": [ - "e20e5892-a345-457b-9cfe-09d0584e787e" + "9dadba7d-9567-4f91-b644-cedd92b72948" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041602Z:e20e5892-a345-457b-9cfe-09d0584e787e" + "CENTRALUS:20150829T001052Z:9dadba7d-9567-4f91-b644-cedd92b72948" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:01 GMT" + "Sat, 29 Aug 2015 00:10:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:564376c3-b779-4546-bffd-57be68604ad6" + "centralus:e4c1bf38-d277-4f5a-8cf1-d4856df8d481" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14995" ], "x-ms-correlation-request-id": [ - "95b7f28c-3807-4d54-b8d6-fa095dd48fa7" + "29a2ab59-d610-4c7a-a634-829e797165b7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041603Z:95b7f28c-3807-4d54-b8d6-fa095dd48fa7" + "CENTRALUS:20150829T001053Z:29a2ab59-d610-4c7a-a634-829e797165b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:02 GMT" + "Sat, 29 Aug 2015 00:10:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NDU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk2445\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "69f5002a-5eab-4a75-96bf-6718c2b518f8" + "33203b84-d9a9-426f-ab02-ba6284cdd157" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"730056b2-a3d8-4e4f-8d09-646dc5383e56\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "5b84668c-8b5d-46df-af6b-74e50ca36505" + "6c8e7b0e-9e91-4f82-8d15-b2c4e81b799a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1194" ], "x-ms-correlation-request-id": [ - "6e39e284-39ca-4c95-bc7b-e16d74a1dc43" + "31789bf5-b7f3-4fe8-b884-915135015f09" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041606Z:6e39e284-39ca-4c95-bc7b-e16d74a1dc43" + "CENTRALUS:20150829T001054Z:31789bf5-b7f3-4fe8-b884-915135015f09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:06 GMT" + "Sat, 29 Aug 2015 00:10:54 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NDU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3583eaf-673b-47dc-99ea-2c2329900858" + "cf804040-e15f-42a0-b17b-58f76f5136f7" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"730056b2-a3d8-4e4f-8d09-646dc5383e56\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "f54945b3-5979-487a-9211-860e9789ebec" + "8f1e6fc3-cf93-45fd-a06f-ae1dd374a771" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14990" ], "x-ms-correlation-request-id": [ - "4c12b225-03f3-4c01-9832-2a890d0e85c4" + "9d13e3fa-f96d-48fb-9721-21a3345e02a1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041606Z:4c12b225-03f3-4c01-9832-2a890d0e85c4" + "CENTRALUS:20150829T001054Z:9d13e3fa-f96d-48fb-9721-21a3345e02a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:06 GMT" + "Sat, 29 Aug 2015 00:10:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NDU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b26e2de9-f20d-469c-93cc-7d5eb0097db3" + "5e209b8c-125e-4e87-a0f0-b564b7f93171" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"730056b2-a3d8-4e4f-8d09-646dc5383e56\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "08d65288-3c2f-4980-83fe-952ddc594e98" + "61ae9d10-7db4-4675-ae4d-4169364997a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14989" ], "x-ms-correlation-request-id": [ - "6e480530-cf7f-466d-9984-956976bff0ce" + "473d1db2-d781-4048-be77-2d3e7198db79" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041611Z:6e480530-cf7f-466d-9984-956976bff0ce" + "CENTRALUS:20150829T001059Z:473d1db2-d781-4048-be77-2d3e7198db79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:11 GMT" + "Sat, 29 Aug 2015 00:10:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NDU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7828647e-c17b-40d3-89cd-da001c85b63f" + "71930271-d37c-4a5c-870d-b5b13567b2fd" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk2445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"730056b2-a3d8-4e4f-8d09-646dc5383e56\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "0f43744e-3ff3-483b-a549-0dc25fc6328b" + "c1cc9dee-aad6-4452-934b-0bbdeedac816" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14988" ], "x-ms-correlation-request-id": [ - "209cd572-6eca-4eaf-bf3a-a2aa52017451" + "37be4084-c3e4-498d-a232-32699d4b038a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041617Z:209cd572-6eca-4eaf-bf3a-a2aa52017451" + "CENTRALUS:20150829T001104Z:37be4084-c3e4-498d-a232-32699d4b038a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:16 GMT" + "Sat, 29 Aug 2015 00:11:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -451,199 +451,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NDU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e97bfb44-de59-417f-ac66-9edcc6f7dcf9" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "449" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a0909872-5d35-4455-8700-107c8dc5928f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" - ], - "x-ms-correlation-request-id": [ - "c17c5160-8a57-4420-b1f3-8d36426054c1" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041622Z:c17c5160-8a57-4420-b1f3-8d36426054c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:16:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b3ae9f7-977b-4a80-91d6-fc431fdd3787" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "449" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "adbbad53-c41d-4ffc-aefd-eeb8569c3eb6" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "d28c8f64-6440-4594-be48-23ed0dffab2e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041628Z:d28c8f64-6440-4594-be48-23ed0dffab2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:16:28 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "45a324ca-731d-4d5c-8780-e09dc3840838" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "443" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "06fd5c8a-231e-4dec-86cf-692d72d51cac" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-correlation-request-id": [ - "e2aa2865-1269-415b-a226-458eddd930a9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041634Z:e2aa2865-1269-415b-a226-458eddd930a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:16:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b2ed1644-9d52-46b3-941a-07b3a2d231d2" + "eb22bcdb-9804-4d5a-9cb5-76019ed27305" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataFactory/dataFactories/onesdk1787' under resource group 'onesdk5249' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataFactory/dataFactories/onesdk2445' under resource group 'onesdk1897' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "160" @@ -661,13 +481,13 @@ "gateway" ], "x-ms-request-id": [ - "2131e869-a387-4379-b5c6-f7b1e24eb18c" + "36d9b7a7-52e0-40ac-bf61-4a3918a7e389" ], "x-ms-correlation-request-id": [ - "2131e869-a387-4379-b5c6-f7b1e24eb18c" + "36d9b7a7-52e0-40ac-bf61-4a3918a7e389" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041638Z:2131e869-a387-4379-b5c6-f7b1e24eb18c" + "CENTRALUS:20150829T001105Z:36d9b7a7-52e0-40ac-bf61-4a3918a7e389" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,28 +496,28 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:37 GMT" + "Sat, 29 Aug 2015 00:11:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b3ca8ec-5243-445a-ae2e-a6fd5be8f29c" + "2d793320-e35b-45ad-99f1-c9b44f462278" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk1787\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"a557b25a-1013-4352-b41d-818db38930bb\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"onesdk2445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"730056b2-a3d8-4e4f-8d09-646dc5383e56\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "520" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,16 +529,16 @@ "no-cache" ], "x-ms-request-id": [ - "dd5eab18-c19f-4765-a2c7-b44e25ecde9d" + "d341ecc9-20ee-4994-a9f8-81ae90221b00" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14987" ], "x-ms-correlation-request-id": [ - "329d4023-7f5b-4623-afe0-9815bbe6beed" + "005b6526-41d7-4df6-afe1-4869bc0ebf3a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041635Z:329d4023-7f5b-4623-afe0-9815bbe6beed" + "CENTRALUS:20150829T001105Z:005b6526-41d7-4df6-afe1-4869bc0ebf3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,7 +547,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:35 GMT" + "Sat, 29 Aug 2015 00:11:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -739,16 +559,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5249/providers/Microsoft.DataFactory/datafactories/onesdk1787?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazE3ODc/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1897/providers/Microsoft.DataFactory/datafactories/onesdk2445?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazI0NDU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b83d4fe-e5f5-4b34-931c-2e067b3c1a9c" + "affabdfa-9172-4d63-b516-4ed286389e6d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -763,16 +583,16 @@ "no-cache" ], "x-ms-request-id": [ - "1b2f4e39-9554-4602-aa54-1a9ab028a665" + "797ebeeb-ab51-408f-9562-8e407c27e1ee" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1193" ], "x-ms-correlation-request-id": [ - "dd7c69e6-6fea-4c08-8dbe-d2450236fec3" + "7de43dea-4a16-40b7-95e5-c2b0f2904afb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041637Z:dd7c69e6-6fea-4c08-8dbe-d2450236fec3" + "CENTRALUS:20150829T001105Z:7de43dea-4a16-40b7-95e5-c2b0f2904afb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +601,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:16:37 GMT" + "Sat, 29 Aug 2015 00:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -795,8 +615,8 @@ ], "Names": { "Test-DataFactoryPiping": [ - "onesdk1787", - "onesdk5249" + "onesdk2445", + "onesdk1897" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json index 075035e9ce05..503cb8c1a171 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14986" ], "x-ms-request-id": [ - "ec92e525-fded-4011-99c7-763c1b2acd3e" + "3ffe47c5-bf6d-4365-b96c-81596b3e09c6" ], "x-ms-correlation-request-id": [ - "ec92e525-fded-4011-99c7-763c1b2acd3e" + "3ffe47c5-bf6d-4365-b96c-81596b3e09c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041510Z:ec92e525-fded-4011-99c7-763c1b2acd3e" + "CENTRALUS:20150829T001011Z:3ffe47c5-bf6d-4365-b96c-81596b3e09c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:10 GMT" + "Sat, 29 Aug 2015 00:10:10 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk198\",\r\n \"name\": \"onesdk198\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8866\",\r\n \"name\": \"onesdk8866\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "176" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1193" ], "x-ms-request-id": [ - "031f4ac5-007f-4e04-8f0c-93dc2b4aaaf7" + "dffa9155-d6e3-4435-aa2b-39cc607df60e" ], "x-ms-correlation-request-id": [ - "031f4ac5-007f-4e04-8f0c-93dc2b4aaaf7" + "dffa9155-d6e3-4435-aa2b-39cc607df60e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041511Z:031f4ac5-007f-4e04-8f0c-93dc2b4aaaf7" + "CENTRALUS:20150829T001011Z:dffa9155-d6e3-4435-aa2b-39cc607df60e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:11 GMT" + "Sat, 29 Aug 2015 00:10:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk198/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazE5OC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8866/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazg4NjYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14985" ], "x-ms-request-id": [ - "cafac74f-f89b-4102-a275-adef7721cc20" + "4e482b44-0750-4e7f-a8cc-948c6e365ac9" ], "x-ms-correlation-request-id": [ - "cafac74f-f89b-4102-a275-adef7721cc20" + "4e482b44-0750-4e7f-a8cc-948c6e365ac9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041511Z:cafac74f-f89b-4102-a275-adef7721cc20" + "CENTRALUS:20150829T001011Z:4e482b44-0750-4e7f-a8cc-948c6e365ac9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:11 GMT" + "Sat, 29 Aug 2015 00:10:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:ae0064d4-3385-464d-923d-713534c72630" + "centralus:fecc9c92-1b55-4627-a2ff-cb5ab538d9bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14981" ], "x-ms-correlation-request-id": [ - "e8bae257-bb25-427e-9925-e2d4096b68c8" + "67f1b58b-4d67-4ea1-9f1b-6b98fc0f912d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041512Z:e8bae257-bb25-427e-9925-e2d4096b68c8" + "CENTRALUS:20150829T001011Z:67f1b58b-4d67-4ea1-9f1b-6b98fc0f912d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:11 GMT" + "Sat, 29 Aug 2015 00:10:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMjM4Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwODI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk2383\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk7082\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "7c963ce6-ef69-4f7c-9b28-0b4141e37b51" + "a191f482-4c11-4da1-b799-679c9f092fe1" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2383\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e042a244-9491-4455-bff8-4335ee4c8969\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7082\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d8d99e52-f0d6-4663-a843-8ea7b858f2cd\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "448" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "89aea817-2728-449e-9cf1-a18721dd8ff0" + "1f678c61-d124-4966-998b-6216f1643272" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1183" ], "x-ms-correlation-request-id": [ - "9344bbd4-67e2-4905-b40a-2a9b86350787" + "d1f0fd7d-e448-46f3-8044-56c6a20ad0b6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041515Z:9344bbd4-67e2-4905-b40a-2a9b86350787" + "CENTRALUS:20150829T001012Z:d1f0fd7d-e448-46f3-8044-56c6a20ad0b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:14 GMT" + "Sat, 29 Aug 2015 00:10:12 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMjM4Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwODI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eadc84f-dd41-4482-8788-14452401d1a0" + "1247ae24-c8e9-41d2-8d49-69ce180b6b91" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2383\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e042a244-9491-4455-bff8-4335ee4c8969\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7082\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d8d99e52-f0d6-4663-a843-8ea7b858f2cd\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "448" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "5de159ed-b451-4dd8-b4f0-b7d599b1b5f9" + "244c81f6-463f-4633-bd27-b37f140cb6e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14975" ], "x-ms-correlation-request-id": [ - "d59b1b2e-1dc7-445c-9ec2-be2a312ce023" + "28083980-a745-4a7c-8a1a-6d3a7d36dd3f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041516Z:d59b1b2e-1dc7-445c-9ec2-be2a312ce023" + "CENTRALUS:20150829T001012Z:28083980-a745-4a7c-8a1a-6d3a7d36dd3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:16 GMT" + "Sat, 29 Aug 2015 00:10:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMjM4Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwODI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93b3f3c0-f64a-45fb-b0c3-91a7b419d16f" + "4dcd8094-55c8-4ab3-ba08-7b83744218a1" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk2383\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"e042a244-9491-4455-bff8-4335ee4c8969\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7082\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"d8d99e52-f0d6-4663-a843-8ea7b858f2cd\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "442" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "a334ae9c-fb14-493c-a18d-0431c6b8c1f1" + "92773624-7e00-411d-a611-e09071067b42" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14974" ], "x-ms-correlation-request-id": [ - "c49d8fe5-0f1a-4b5e-8793-e8789f150cee" + "9fcbebc2-862e-40db-8061-50229851f84c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041521Z:c49d8fe5-0f1a-4b5e-8793-e8789f150cee" + "CENTRALUS:20150829T001017Z:9fcbebc2-862e-40db-8061-50229851f84c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:21 GMT" + "Sat, 29 Aug 2015 00:10:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,16 +391,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk198/providers/Microsoft.DataFactory/datafactories/onesdk2383?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrMjM4Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8866/providers/Microsoft.DataFactory/datafactories/onesdk7082?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg4NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazcwODI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237eea4c-d136-4c61-903b-7493c7fc0bcc" + "4258a6c9-43e6-43f5-ab36-828c806fe6a1" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -415,16 +415,16 @@ "no-cache" ], "x-ms-request-id": [ - "c40621ef-bd3c-41c6-bef4-948b884512d4" + "6ad4496b-c066-4a75-bea2-6c8cc30b8216" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1182" ], "x-ms-correlation-request-id": [ - "fd467878-190a-42e2-8b8a-3e1599cac8c6" + "eeac8c0d-1988-4ba4-9331-4039eb171c33" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041523Z:fd467878-190a-42e2-8b8a-3e1599cac8c6" + "CENTRALUS:20150829T001018Z:eeac8c0d-1988-4ba4-9331-4039eb171c33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,7 +433,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:15:22 GMT" + "Sat, 29 Aug 2015 00:10:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -447,8 +447,8 @@ ], "Names": { "Test-DeleteDataFactoryWithDataFactoryParameter": [ - "onesdk2383", - "onesdk198" + "onesdk7082", + "onesdk8866" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json index 1f7b02a8806e..6cad02752b00 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestGetNonExistingDataFactory.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5303?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3762?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM3NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14984" ], "x-ms-request-id": [ - "328d53c9-c525-4943-b6f7-768f9a0f83cb" + "15e701bf-4a66-4991-adfb-bdb71e0c3199" ], "x-ms-correlation-request-id": [ - "328d53c9-c525-4943-b6f7-768f9a0f83cb" + "15e701bf-4a66-4991-adfb-bdb71e0c3199" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040117Z:328d53c9-c525-4943-b6f7-768f9a0f83cb" + "CENTRALUS:20150829T000936Z:15e701bf-4a66-4991-adfb-bdb71e0c3199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:01:17 GMT" + "Sat, 29 Aug 2015 00:09:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5303?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3762?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM3NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5303\",\r\n \"name\": \"onesdk5303\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3762\",\r\n \"name\": \"onesdk3762\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "4c9f1bac-7227-4fb2-8143-c15cc478af56" + "929ffb4d-4903-45b0-8178-0fcd1dddfef8" ], "x-ms-correlation-request-id": [ - "4c9f1bac-7227-4fb2-8143-c15cc478af56" + "929ffb4d-4903-45b0-8178-0fcd1dddfef8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040118Z:4c9f1bac-7227-4fb2-8143-c15cc478af56" + "CENTRALUS:20150829T000936Z:929ffb4d-4903-45b0-8178-0fcd1dddfef8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:01:18 GMT" + "Sat, 29 Aug 2015 00:09:35 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5303/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMDMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3762/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazM3NjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14983" ], "x-ms-request-id": [ - "a24efbee-dc13-475a-9865-e000815820c6" + "a0715875-af82-44b5-8e5d-8ebad59d0709" ], "x-ms-correlation-request-id": [ - "a24efbee-dc13-475a-9865-e000815820c6" + "a0715875-af82-44b5-8e5d-8ebad59d0709" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040119Z:a24efbee-dc13-475a-9865-e000815820c6" + "CENTRALUS:20150829T000936Z:a0715875-af82-44b5-8e5d-8ebad59d0709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:01:18 GMT" + "Sat, 29 Aug 2015 00:09:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5303/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3762/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:4f228c6e-c1ca-46e7-b5aa-f914c4db873a" + "centralus:6f553361-a860-4598-9bfa-74dc831ea248" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "5903ae53-85f8-49b2-8c1c-ba2b18b97216" + "97b740b9-7c88-488b-a6e4-7c3a7214bfc9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040119Z:5903ae53-85f8-49b2-8c1c-ba2b18b97216" + "CENTRALUS:20150829T000937Z:97b740b9-7c88-488b-a6e4-7c3a7214bfc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,25 +199,25 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:01:18 GMT" + "Sat, 29 Aug 2015 00:09:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5303/providers/Microsoft.DataFactory/datafactories/onesdk6630?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2MzA/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3762/providers/Microsoft.DataFactory/datafactories/onesdk8734?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazM3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74e9df1d-744f-46cf-88fb-6cd86614ee92" + "43d37b94-4b6e-4aaa-9cfe-a5dd3257ea2c" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataFactory/dataFactories/onesdk6630' under resource group 'onesdk5303' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataFactory/dataFactories/onesdk8734' under resource group 'onesdk3762' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "160" @@ -235,13 +235,13 @@ "gateway" ], "x-ms-request-id": [ - "e71629e7-67ac-4360-9c83-cd66ad267188" + "f85230d8-f5c2-4d46-b3b5-94f750f6b068" ], "x-ms-correlation-request-id": [ - "e71629e7-67ac-4360-9c83-cd66ad267188" + "f85230d8-f5c2-4d46-b3b5-94f750f6b068" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040120Z:e71629e7-67ac-4360-9c83-cd66ad267188" + "CENTRALUS:20150829T000937Z:f85230d8-f5c2-4d46-b3b5-94f750f6b068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,7 +250,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:01:20 GMT" + "Sat, 29 Aug 2015 00:09:36 GMT" ] }, "StatusCode": 404 @@ -258,8 +258,8 @@ ], "Names": { "Test-GetNonExistingDataFactory": [ - "onesdk6630", - "onesdk5303" + "onesdk8734", + "onesdk3762" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json index d064d33cccdf..c65a60367f69 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHub.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-request-id": [ - "f1875a55-69f6-4a61-b6d3-f8eb19f2980a" + "2def3e6f-71d5-46e7-9e30-6835d1ded032" ], "x-ms-correlation-request-id": [ - "f1875a55-69f6-4a61-b6d3-f8eb19f2980a" + "2def3e6f-71d5-46e7-9e30-6835d1ded032" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040428Z:f1875a55-69f6-4a61-b6d3-f8eb19f2980a" + "CENTRALUS:20150829T000457Z:2def3e6f-71d5-46e7-9e30-6835d1ded032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:27 GMT" + "Sat, 29 Aug 2015 00:04:57 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9352\",\r\n \"name\": \"onesdk9352\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7945\",\r\n \"name\": \"onesdk7945\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1198" ], "x-ms-request-id": [ - "50962cc7-9995-4857-8d51-99e43349c9f6" + "4d0fc5f5-1881-4863-8776-81e862f7bb41" ], "x-ms-correlation-request-id": [ - "50962cc7-9995-4857-8d51-99e43349c9f6" + "4d0fc5f5-1881-4863-8776-81e862f7bb41" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040428Z:50962cc7-9995-4857-8d51-99e43349c9f6" + "CENTRALUS:20150829T000458Z:4d0fc5f5-1881-4863-8776-81e862f7bb41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:27 GMT" + "Sat, 29 Aug 2015 00:04:57 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9352/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazkzNTIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7945/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazc5NDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14997" ], "x-ms-request-id": [ - "133123d1-9e0d-4a87-a096-2f0ed935b505" + "8055bb52-9fa0-4c1a-af44-abacbf4583d9" ], "x-ms-correlation-request-id": [ - "133123d1-9e0d-4a87-a096-2f0ed935b505" + "8055bb52-9fa0-4c1a-af44-abacbf4583d9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040429Z:133123d1-9e0d-4a87-a096-2f0ed935b505" + "CENTRALUS:20150829T000458Z:8055bb52-9fa0-4c1a-af44-abacbf4583d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:29 GMT" + "Sat, 29 Aug 2015 00:04:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:345c9222-4805-4774-b5c8-faa6484a1110" + "centralus:0a578d79-48d3-4d4a-a848-b956b5074def" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "dfd5ad6c-4b82-42f3-abab-078015f1bba0" + "f9551ae9-7b36-4913-b7fc-b1ed0965f756" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040429Z:dfd5ad6c-4b82-42f3-abab-078015f1bba0" + "CENTRALUS:20150829T000458Z:f9551ae9-7b36-4913-b7fc-b1ed0965f756" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:29 GMT" + "Sat, 29 Aug 2015 00:04:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk5752\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "c3bdf8b8-e66b-41ff-8a69-5415b47919f3" + "a72fef8d-d199-40a7-b274-fc9aab1ce942" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5752\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2e202619-e2cd-4aef-a7d5-4779419986b1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9d33a856-4b0a-4bff-b255-1dbc67d16f16\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "17603778-cb68-428a-98b5-e83753a95a83" + "e2eed983-7ce1-4d7a-aeb7-96b5c6901336" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-correlation-request-id": [ - "e63bf8a0-5508-472a-bc45-952fd081ff5a" + "5712f8f6-cb3e-46c9-a083-046494efb1a4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040433Z:e63bf8a0-5508-472a-bc45-952fd081ff5a" + "CENTRALUS:20150829T000459Z:5712f8f6-cb3e-46c9-a083-046494efb1a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:32 GMT" + "Sat, 29 Aug 2015 00:04:58 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,85 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55f66bfb-1c92-4667-b318-40a57a56d80b" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9d33a856-4b0a-4bff-b255-1dbc67d16f16\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "870380cd-9ee5-4685-a1a1-072d9018a1c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "fa09485c-6bd2-4e83-9e8b-b0329edb68ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T000459Z:fa09485c-6bd2-4e83-9e8b-b0329edb68ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:04:59 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d8fe19f-b0a7-4ba8-b894-3b79b68ba0da" + "5e98e914-b99c-4f7c-9d81-accd51122136" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5752\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2e202619-e2cd-4aef-a7d5-4779419986b1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9d33a856-4b0a-4bff-b255-1dbc67d16f16\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "f8e37dbd-1573-4e90-81a3-cae4dae9d965" + "d4278c73-3c94-4406-bbbc-76c0cb8c0e22" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14996" ], "x-ms-correlation-request-id": [ - "38bcdc7d-1215-423d-ab23-c924b59f2f92" + "24985714-7bc3-479a-8631-8d7132fae2f8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040433Z:38bcdc7d-1215-423d-ab23-c924b59f2f92" + "CENTRALUS:20150829T000504Z:24985714-7bc3-479a-8631-8d7132fae2f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:33 GMT" + "Sat, 29 Aug 2015 00:05:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f4de9ee-b681-4c3a-b3db-3668cdabfade" + "c7181468-40e3-4aad-9d93-5c178ce108e4" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5752\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2e202619-e2cd-4aef-a7d5-4779419986b1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9d33a856-4b0a-4bff-b255-1dbc67d16f16\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "307df3a6-93e3-4f24-9c71-e2c94fa7053b" + "3e6c0beb-863f-4037-b21e-6f4a09c1e10a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14995" ], "x-ms-correlation-request-id": [ - "48b00e42-37e0-400f-8e6d-d832802040b4" + "19505e56-8b7c-43b9-b4b2-6666239d77ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040438Z:48b00e42-37e0-400f-8e6d-d832802040b4" + "CENTRALUS:20150829T000509Z:19505e56-8b7c-43b9-b4b2-6666239d77ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:38 GMT" + "Sat, 29 Aug 2015 00:05:09 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +451,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c844dc52-bb5a-4225-b89f-bc82f0f03702" + "58c3f7cb-df2b-4cec-b651-6eac11798f3e" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5752\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2e202619-e2cd-4aef-a7d5-4779419986b1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9d33a856-4b0a-4bff-b255-1dbc67d16f16\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +481,76 @@ "no-cache" ], "x-ms-request-id": [ - "dfb3c619-7cdf-47f9-bf39-d73edf4075d5" + "f8ae6e0c-8ef7-4eda-9d66-b3848fee1f0b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14994" + ], + "x-ms-correlation-request-id": [ + "4069d888-4bb3-4844-9228-ab7bb09687a5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T000514Z:4069d888-4bb3-4844-9228-ab7bb09687a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:05:14 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c98e097a-2d6f-443c-9bfc-9c91215932de" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk7959\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9d33a856-4b0a-4bff-b255-1dbc67d16f16\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "440" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "569bd648-235e-4c7a-b7bc-3791e270aadd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "x-ms-correlation-request-id": [ - "9d74b52a-3298-4c4f-8e7f-3fee211f7345" + "514998f4-941e-4fb9-a9fe-578f48f18b96" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040444Z:9d74b52a-3298-4c4f-8e7f-3fee211f7345" + "CENTRALUS:20150829T000520Z:514998f4-941e-4fb9-a9fe-578f48f18b96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +559,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:44 GMT" + "Sat, 29 Aug 2015 00:05:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -451,8 +571,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTIvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTkvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"00000000-0000-0000-0000-000000000001\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -463,13 +583,13 @@ "233" ], "x-ms-client-request-id": [ - "c3165d1e-a2de-42fc-8ed6-4992701e9239" + "ee1eab0b-1579-4e7c-9a89-fe3fd796fb0e" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"47f4cfa4-c554-4ba3-ab10-3b4388e7d660\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"074d093d-1fc6-4ed9-88a0-5ac604b1ccaa\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -484,16 +604,16 @@ "no-cache" ], "x-ms-request-id": [ - "3349d230-8c55-49e9-aa92-b0a536c808b7" + "1ee00108-5de6-459e-8315-1b4386de892f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1197" ], "x-ms-correlation-request-id": [ - "b04eec07-1ff7-4aca-b6f4-9f4017fc0700" + "5533e785-2f6a-4c60-9f53-84b4db8dff6c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040445Z:b04eec07-1ff7-4aca-b6f4-9f4017fc0700" + "CENTRALUS:20150829T000520Z:5533e785-2f6a-4c60-9f53-84b4db8dff6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,10 +622,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:45 GMT" + "Sat, 29 Aug 2015 00:05:19 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752/hubs/SampleHub?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959/hubs/SampleHub?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,19 +637,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTIvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTkvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "827132e0-ae91-49cf-a183-a570d287e8d4" + "dc040c4a-9911-4043-b7d1-76d7fd70eb15" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"47f4cfa4-c554-4ba3-ab10-3b4388e7d660\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"074d093d-1fc6-4ed9-88a0-5ac604b1ccaa\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -544,16 +664,16 @@ "no-cache" ], "x-ms-request-id": [ - "377060e5-9749-4ee5-9356-7f4af3af1dd5" + "5aeec1da-3d90-4480-9520-76d302ead384" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14992" ], "x-ms-correlation-request-id": [ - "03310564-a597-4945-b37c-3616628496d8" + "5a997960-8073-4203-a1b3-4defd8070232" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040445Z:03310564-a597-4945-b37c-3616628496d8" + "CENTRALUS:20150829T000520Z:5a997960-8073-4203-a1b3-4defd8070232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,7 +682,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:45 GMT" + "Sat, 29 Aug 2015 00:05:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -574,16 +694,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTIvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTkvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3e3ff5b-53fc-4cfa-a33e-6e86cba996de" + "fb87b9ca-d169-492e-bae5-c0c8e57973f8" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -601,16 +721,16 @@ "15" ], "x-ms-request-id": [ - "c6a310d2-3553-476e-b21a-4465a7c90fd7" + "350c4ed7-6d2f-41ba-8d3b-211993a05e6b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1196" ], "x-ms-correlation-request-id": [ - "7f4fd64d-1f1c-4ea6-9d35-c1cb8d27ccb9" + "201987dc-3a0e-4d44-b032-19faff6155fe" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040446Z:7f4fd64d-1f1c-4ea6-9d35-c1cb8d27ccb9" + "CENTRALUS:20150829T000520Z:201987dc-3a0e-4d44-b032-19faff6155fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -619,10 +739,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:46 GMT" + "Sat, 29 Aug 2015 00:05:19 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752/hubs/SampleHub/operationresults/fcbc89a8fae3406f939b0826b25362cf?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959/hubs/SampleHub/operationresults/621e06fe2671460d86cae0d7762a447c?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -634,16 +754,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752/hubs/SampleHub/operationresults/fcbc89a8fae3406f939b0826b25362cf?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTIvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy9mY2JjODlhOGZhZTM0MDZmOTM5YjA4MjZiMjUzNjJjZj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959/hubs/SampleHub/operationresults/621e06fe2671460d86cae0d7762a447c?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTkvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy82MjFlMDZmZTI2NzE0NjBkODZjYWUwZDc3NjJhNDQ3Yz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -658,16 +778,16 @@ "no-cache" ], "x-ms-request-id": [ - "a093c21b-f886-4703-bc47-e7b08b07a272" + "b6cefba9-125a-4cf5-a222-d2a54d35f16c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14991" ], "x-ms-correlation-request-id": [ - "28fa7256-b9bb-4567-9551-197218f15829" + "ca3fe5dd-db03-4ac8-8bde-592af7b2c2d2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040446Z:28fa7256-b9bb-4567-9551-197218f15829" + "CENTRALUS:20150829T000521Z:ca3fe5dd-db03-4ac8-8bde-592af7b2c2d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,7 +796,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:46 GMT" + "Sat, 29 Aug 2015 00:05:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -688,16 +808,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9352/providers/Microsoft.DataFactory/datafactories/onesdk5752?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU3NTI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7945/providers/Microsoft.DataFactory/datafactories/onesdk7959?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc5NTk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f76c29c0-5895-4286-8641-cdc05f56848d" + "ffc1d265-fbb8-45a2-bdcf-10d1826ba96f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -712,16 +832,16 @@ "no-cache" ], "x-ms-request-id": [ - "aa8c6bcf-f1f7-4dbe-8b97-fbd48ccf727b" + "307fe7ad-2fa9-4509-8d65-41de2bdd51e0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1195" ], "x-ms-correlation-request-id": [ - "0f88cdeb-4b49-4743-85e7-2b70f81e5c68" + "cac789ca-9dab-466a-bb11-31eae6f61e74" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040447Z:0f88cdeb-4b49-4743-85e7-2b70f81e5c68" + "CENTRALUS:20150829T000521Z:cac789ca-9dab-466a-bb11-31eae6f61e74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,7 +850,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:04:47 GMT" + "Sat, 29 Aug 2015 00:05:21 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -744,8 +864,8 @@ ], "Names": { "Test-Hub": [ - "onesdk5752", - "onesdk9352" + "onesdk7959", + "onesdk7945" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json index 9082da604ec1..ffdec8137374 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubPiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-request-id": [ - "81c64b97-8675-4d68-adeb-e8863718f875" + "94e84ab5-95f6-4def-b44a-cf0bedcd6b2e" ], "x-ms-correlation-request-id": [ - "81c64b97-8675-4d68-adeb-e8863718f875" + "94e84ab5-95f6-4def-b44a-cf0bedcd6b2e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040337Z:81c64b97-8675-4d68-adeb-e8863718f875" + "CENTRALUS:20150829T000555Z:94e84ab5-95f6-4def-b44a-cf0bedcd6b2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:36 GMT" + "Sat, 29 Aug 2015 00:05:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3331\",\r\n \"name\": \"onesdk3331\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9962\",\r\n \"name\": \"onesdk9962\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-request-id": [ - "b8e42f11-1fbd-4ebd-97b8-355ab31306e3" + "967a874d-68f6-4c58-95fd-cd7577535ab2" ], "x-ms-correlation-request-id": [ - "b8e42f11-1fbd-4ebd-97b8-355ab31306e3" + "967a874d-68f6-4c58-95fd-cd7577535ab2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040338Z:b8e42f11-1fbd-4ebd-97b8-355ab31306e3" + "CENTRALUS:20150829T000555Z:967a874d-68f6-4c58-95fd-cd7577535ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:37 GMT" + "Sat, 29 Aug 2015 00:05:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk3331/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazMzMzEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9962/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazk5NjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-request-id": [ - "686427f0-4d98-4a03-ad38-facba427ce0f" + "1813a5a4-48c2-43f6-9f0d-91962b5c26d3" ], "x-ms-correlation-request-id": [ - "686427f0-4d98-4a03-ad38-facba427ce0f" + "1813a5a4-48c2-43f6-9f0d-91962b5c26d3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040338Z:686427f0-4d98-4a03-ad38-facba427ce0f" + "CENTRALUS:20150829T000555Z:1813a5a4-48c2-43f6-9f0d-91962b5c26d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:38 GMT" + "Sat, 29 Aug 2015 00:05:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:9ce70e08-373e-4a44-9f01-bca46080f9e9" + "centralus:fbf33c40-b266-48ff-8723-74e0b75602c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "3037c40e-308e-438a-92c4-8ad0f507b6b8" + "3023b1bb-4bbc-4757-a1aa-ffc7bace2dc6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040339Z:3037c40e-308e-438a-92c4-8ad0f507b6b8" + "CENTRALUS:20150829T000556Z:3023b1bb-4bbc-4757-a1aa-ffc7bace2dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:38 GMT" + "Sat, 29 Aug 2015 00:05:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk669\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk6126\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "73" + "71" ], "x-ms-client-request-id": [ - "dcada8b3-eeaf-4151-a6f5-0df6aca14a97" + "3d949beb-9e96-41fe-9b6b-6becd8fe245c" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk669\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"50078ff4-2252-4d0a-b948-db85a0489fe4\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6126\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fe0b8b46-d4e3-432e-8e64-2d6a271a184c\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "ceb741b0-aea5-4a6b-8f07-5c514115c43a" + "4cf6417f-ed0b-4a4a-a0c0-c9e5e7cba190" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "9a2c1782-0cad-431c-9db1-305299ea0c21" + "b9e84694-e028-457e-bf8d-cc9c9faa47d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040341Z:9a2c1782-0cad-431c-9db1-305299ea0c21" + "CENTRALUS:20150829T000556Z:b9e84694-e028-457e-bf8d-cc9c9faa47d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:41 GMT" + "Sat, 29 Aug 2015 00:05:56 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,85 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e089e0dd-d406-41a2-b2a2-191d256f6e09" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk6126\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fe0b8b46-d4e3-432e-8e64-2d6a271a184c\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56b5e378-21f8-4227-b7ef-ab997ce38bc3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "35bded11-5183-4bd2-8218-4ce4524892c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T000557Z:35bded11-5183-4bd2-8218-4ce4524892c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:05:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9fc8483-3089-43d0-a6e7-99299210ab9c" + "51e3c72d-797b-4b23-879c-d26d2008654b" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk669\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"50078ff4-2252-4d0a-b948-db85a0489fe4\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6126\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fe0b8b46-d4e3-432e-8e64-2d6a271a184c\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "4bf14b2e-993d-44df-81de-8719f176d9c0" + "21c9ad9e-4697-47f2-8940-8fa2393ef467" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14992" ], "x-ms-correlation-request-id": [ - "9b84f6d6-d1ba-4e42-b570-4ed18951f611" + "f23e31fd-5f6f-4512-beb9-ec1947c8a245" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040341Z:9b84f6d6-d1ba-4e42-b570-4ed18951f611" + "CENTRALUS:20150829T000602Z:f23e31fd-5f6f-4512-beb9-ec1947c8a245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:41 GMT" + "Sat, 29 Aug 2015 00:06:02 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "392fa079-5c9f-4e46-a340-c724c17d3340" + "e888e9ed-4017-4e32-a14f-df230bb72851" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk669\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"50078ff4-2252-4d0a-b948-db85a0489fe4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk6126\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"fe0b8b46-d4e3-432e-8e64-2d6a271a184c\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "441" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "0fd4b06f-1895-4b63-b518-3c2c9bbb94f1" + "432c673a-6f5f-4b8a-be56-dbe446026464" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14991" ], "x-ms-correlation-request-id": [ - "ee29f047-685d-4c59-835a-8720da53adae" + "04bf8a6c-947c-4ff2-9c29-6efd5a4f6e77" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040347Z:ee29f047-685d-4c59-835a-8720da53adae" + "CENTRALUS:20150829T000607Z:04bf8a6c-947c-4ff2-9c29-6efd5a4f6e77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:46 GMT" + "Sat, 29 Aug 2015 00:06:06 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OS9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"00000000-0000-0000-0000-000000000001\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -403,13 +463,13 @@ "233" ], "x-ms-client-request-id": [ - "b213c7df-107f-4930-a4f0-72249d3362c8" + "511d026c-000c-48d4-9620-b7df84a0ef9e" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"3edaf4ca-6cee-485f-993e-2e53036b3477\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"d3d6419d-706c-4d97-9b66-dd67993a40e7\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -424,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "d67a08fe-aed4-43a4-ab81-8ce05969d14a" + "0b692ae0-899c-4da9-a219-43b7843cc428" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-correlation-request-id": [ - "73ceb031-cb43-4b61-b0cc-8e3fd40e0f76" + "211749e4-33a8-4f60-9a8d-eb375f1a8ade" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040347Z:73ceb031-cb43-4b61-b0cc-8e3fd40e0f76" + "CENTRALUS:20150829T000607Z:211749e4-33a8-4f60-9a8d-eb375f1a8ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,10 +502,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:47 GMT" + "Sat, 29 Aug 2015 00:06:06 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -457,19 +517,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OS9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d2470e6-279d-4123-8374-88e4630d0cb5" + "b5e16236-9516-4a65-9fbb-9d97b983ae07" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"3edaf4ca-6cee-485f-993e-2e53036b3477\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"d3d6419d-706c-4d97-9b66-dd67993a40e7\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -484,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "ff1e0f11-4d5a-43b6-99a6-68ed38376ad6" + "0b8a406c-c9db-48fa-80a4-ba1b0fd60e1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14990" ], "x-ms-correlation-request-id": [ - "4375c0e2-5dd1-4d10-b81e-c801950f6f29" + "060bf903-50ce-4b51-81f2-ba3515f87ced" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040348Z:4375c0e2-5dd1-4d10-b81e-c801950f6f29" + "CENTRALUS:20150829T000607Z:060bf903-50ce-4b51-81f2-ba3515f87ced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:47 GMT" + "Sat, 29 Aug 2015 00:06:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -514,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OS9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1e06be9-3029-4f11-ac99-e0211e092d68" + "99f1b77b-c853-4f58-8b78-b869249e1ab2" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Hub: SampleHub not found.\",\r\n \"code\": \"HubNotFound\"\r\n}", @@ -541,16 +601,16 @@ "no-cache" ], "x-ms-request-id": [ - "ff8a22e9-135f-4764-bdf7-db3f6a55e923" + "2f40067c-1d78-435b-b64a-301ed881808e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14988" ], "x-ms-correlation-request-id": [ - "3530b893-9670-49fa-ba3b-d559b5aa03ba" + "64d33f68-0c1e-4a6e-b6ff-652451d5b024" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040349Z:3530b893-9670-49fa-ba3b-d559b5aa03ba" + "CENTRALUS:20150829T000608Z:64d33f68-0c1e-4a6e-b6ff-652451d5b024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,7 +619,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:48 GMT" + "Sat, 29 Aug 2015 00:06:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -571,16 +631,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OS9odWJzL1NhbXBsZUh1Yj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "928a8eea-eab6-487a-8081-a03f0503fb1c" + "95865264-f9f4-43fb-8e43-3a67b81b6571" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -598,16 +658,16 @@ "15" ], "x-ms-request-id": [ - "0fa89717-6a33-4463-abfe-75643db5dc61" + "715262ec-ef22-4270-9b84-401b7f3d5af2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1193" ], "x-ms-correlation-request-id": [ - "94bd7fb9-3c7d-445b-9261-ce46d408756b" + "323ef843-cf6b-47b3-82aa-cf28872ee2e6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040348Z:94bd7fb9-3c7d-445b-9261-ce46d408756b" + "CENTRALUS:20150829T000608Z:323ef843-cf6b-47b3-82aa-cf28872ee2e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,10 +676,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:48 GMT" + "Sat, 29 Aug 2015 00:06:07 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub/operationresults/c00d328e1e6b470e8c7daccdb5240b4e?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub/operationresults/2430d657e18d4c5aba5ee07126fe6511?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -631,16 +691,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669/hubs/SampleHub/operationresults/c00d328e1e6b470e8c7daccdb5240b4e?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OS9odWJzL1NhbXBsZUh1Yi9vcGVyYXRpb25yZXN1bHRzL2MwMGQzMjhlMWU2YjQ3MGU4YzdkYWNjZGI1MjQwYjRlP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126/hubs/SampleHub/operationresults/2430d657e18d4c5aba5ee07126fe6511?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjYvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy8yNDMwZDY1N2UxOGQ0YzVhYmE1ZWUwNzEyNmZlNjUxMT9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -655,16 +715,16 @@ "no-cache" ], "x-ms-request-id": [ - "26955777-2a4b-44d4-adc4-17f608fa0a13" + "9c4082de-8ba7-4b02-afbc-f93abf621b8b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14989" ], "x-ms-correlation-request-id": [ - "e363a66c-ce31-4a40-a6a7-18fca4244532" + "8ea4559f-e9a5-459a-aeac-18d9c89f76ed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040348Z:e363a66c-ce31-4a40-a6a7-18fca4244532" + "CENTRALUS:20150829T000608Z:8ea4559f-e9a5-459a-aeac-18d9c89f76ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,7 +733,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:48 GMT" + "Sat, 29 Aug 2015 00:06:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -685,16 +745,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk3331/providers/Microsoft.DataFactory/datafactories/onesdk669?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazY2OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9962/providers/Microsoft.DataFactory/datafactories/onesdk6126?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazYxMjY/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34fd3dcb-dad8-4a59-b6e1-15133b940eec" + "acbfa15b-0959-46f9-bf11-595af2812126" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -709,16 +769,16 @@ "no-cache" ], "x-ms-request-id": [ - "5756c4f2-6841-4e61-8811-342c3ba58083" + "c682fa72-9302-40bc-bf3a-09cd0db15131" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1192" ], "x-ms-correlation-request-id": [ - "b9701381-177f-4e83-9b45-bae305f3cf06" + "e79ccb3c-6faf-494f-9771-6d706f5d2a47" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040351Z:b9701381-177f-4e83-9b45-bae305f3cf06" + "CENTRALUS:20150829T000610Z:e79ccb3c-6faf-494f-9771-6d706f5d2a47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,7 +787,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:03:50 GMT" + "Sat, 29 Aug 2015 00:06:10 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -741,8 +801,8 @@ ], "Names": { "Test-HubPiping": [ - "onesdk669", - "onesdk3331" + "onesdk6126", + "onesdk9962" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json index 34b56185692f..9d7abc7360bc 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.HubTests/TestHubWithDataFactoryParameter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-request-id": [ - "c7ad5d06-5426-4366-adab-99e6f96ea217" + "d5bd3af6-20b0-48fb-92e6-07964c319ee7" ], "x-ms-correlation-request-id": [ - "c7ad5d06-5426-4366-adab-99e6f96ea217" + "d5bd3af6-20b0-48fb-92e6-07964c319ee7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040227Z:c7ad5d06-5426-4366-adab-99e6f96ea217" + "CENTRALUS:20150829T000409Z:d5bd3af6-20b0-48fb-92e6-07964c319ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:27 GMT" + "Sat, 29 Aug 2015 00:04:09 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1242\",\r\n \"name\": \"onesdk1242\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk2237\",\r\n \"name\": \"onesdk2237\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "c28910a1-7ae5-448b-a193-cb1efae08e26" + "2c554b1a-73f3-4e5f-946e-6cd85cd06064" ], "x-ms-correlation-request-id": [ - "c28910a1-7ae5-448b-a193-cb1efae08e26" + "2c554b1a-73f3-4e5f-946e-6cd85cd06064" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040228Z:c28910a1-7ae5-448b-a193-cb1efae08e26" + "CENTRALUS:20150829T000409Z:2c554b1a-73f3-4e5f-946e-6cd85cd06064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:28 GMT" + "Sat, 29 Aug 2015 00:04:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1242/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazEyNDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk2237/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazIyMzcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-request-id": [ - "bb57fb83-e8e3-4365-905e-e09d0300f500" + "d258cf7f-e6f9-434b-8af8-39f01c7066aa" ], "x-ms-correlation-request-id": [ - "bb57fb83-e8e3-4365-905e-e09d0300f500" + "d258cf7f-e6f9-434b-8af8-39f01c7066aa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040228Z:bb57fb83-e8e3-4365-905e-e09d0300f500" + "CENTRALUS:20150829T000409Z:d258cf7f-e6f9-434b-8af8-39f01c7066aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:28 GMT" + "Sat, 29 Aug 2015 00:04:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:e6e4c8a2-6eef-4c14-bf81-c7238506c28f" + "centralus:b9431002-fe4a-436f-811e-a5175bb442a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14997" ], "x-ms-correlation-request-id": [ - "125379cb-e362-48ca-bec6-fad0f8111b89" + "f2b8e2e8-168e-4012-a3fe-25aebd41a711" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040229Z:125379cb-e362-48ca-bec6-fad0f8111b89" + "CENTRALUS:20150829T000409Z:f2b8e2e8-168e-4012-a3fe-25aebd41a711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:29 GMT" + "Sat, 29 Aug 2015 00:04:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk3654\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "81988816-f533-4177-bd39-57fadbb29e49" + "e3c5a1c3-ff76-49ba-a5ea-f10161977e87" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"8cb74cdb-cb8e-411c-b2cd-7a1ee78d3e0a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3654\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"cd28a4a3-a937-4ffc-8d32-c762d2c34e8e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "533bc377-4b13-4b55-abb4-8bb8eb2366bb" + "d586c10d-f527-48f3-aa60-54114c8d549a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "62475a7f-1477-4258-a0f6-633a5be5705c" + "35200d7c-abc9-41a5-8985-73f9f8ec4dc4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040233Z:62475a7f-1477-4258-a0f6-633a5be5705c" + "CENTRALUS:20150829T000410Z:35200d7c-abc9-41a5-8985-73f9f8ec4dc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:33 GMT" + "Sat, 29 Aug 2015 00:04:10 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,85 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e3ace45-a223-4429-97ac-8fbbaa3c3548" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"8cb74cdb-cb8e-411c-b2cd-7a1ee78d3e0a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "449" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "91be7503-ecae-4062-aba2-81e7be7ba3e1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "237ecfd1-8f2a-43cb-ad70-e0ff1e3e1477" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040233Z:237ecfd1-8f2a-43cb-ad70-e0ff1e3e1477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:02:33 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d804206-41fc-456e-a825-d756c2bf3acd" + "235ba4cd-88d2-4903-a21a-6bea59084177" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"8cb74cdb-cb8e-411c-b2cd-7a1ee78d3e0a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3654\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"cd28a4a3-a937-4ffc-8d32-c762d2c34e8e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "1c456149-d982-44bd-a91c-dc4fa7e49422" + "91cd1cce-d8a1-4355-ace2-a02c0e7e095d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "965087ce-a646-4db2-bfd1-209bdc1ae8f1" + "a562392d-dd52-456f-b2e5-45b8061c7e30" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040238Z:965087ce-a646-4db2-bfd1-209bdc1ae8f1" + "CENTRALUS:20150829T000410Z:a562392d-dd52-456f-b2e5-45b8061c7e30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:38 GMT" + "Sat, 29 Aug 2015 00:04:10 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c3ebbae-3e06-4663-8f67-f197d3b08592" + "adf4b519-bc4c-496f-9de1-579155d79280" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"8cb74cdb-cb8e-411c-b2cd-7a1ee78d3e0a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3654\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"cd28a4a3-a937-4ffc-8d32-c762d2c34e8e\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,76 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "6741e8a2-30fd-4087-a539-440e80302b5c" + "ab2e1492-cbdb-4486-a6da-9648d67b459d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "2c11f24b-bdf1-4f1e-90e2-f1a366a16eeb" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040244Z:2c11f24b-bdf1-4f1e-90e2-f1a366a16eeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:02:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "560cb4b9-6d22-4733-b3b0-55d9f0aa99a0" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"8cb74cdb-cb8e-411c-b2cd-7a1ee78d3e0a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "449" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6b043d33-aa09-4eff-a9cd-afb086b1b6b8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14997" ], "x-ms-correlation-request-id": [ - "9bbf8a4c-37f2-42d4-b546-1ebb3065c6d5" + "233f1bc8-7de9-49c5-97f6-cf59fb01b5bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040249Z:9bbf8a4c-37f2-42d4-b546-1ebb3065c6d5" + "CENTRALUS:20150829T000415Z:233f1bc8-7de9-49c5-97f6-cf59fb01b5bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:48 GMT" + "Sat, 29 Aug 2015 00:04:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -511,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "788ef5a2-0f59-45a1-a57a-d4ba5c7f9494" + "f4c5b3fd-475b-4492-a322-d856f21709d8" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk7556\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"8cb74cdb-cb8e-411c-b2cd-7a1ee78d3e0a\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3654\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"cd28a4a3-a937-4ffc-8d32-c762d2c34e8e\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "e19bd269-06b5-4319-ace5-9e4124e3a057" + "61a53526-411a-4424-819c-76df173e6eb8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14996" ], "x-ms-correlation-request-id": [ - "ad03e76c-7013-4aa9-a9bb-7d609139b045" + "cbcb51f7-b4c6-4589-ae36-592653e67a4a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040254Z:ad03e76c-7013-4aa9-a9bb-7d609139b045" + "CENTRALUS:20150829T000421Z:cbcb51f7-b4c6-4589-ae36-592653e67a4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:54 GMT" + "Sat, 29 Aug 2015 00:04:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -571,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"00000000-0000-0000-0000-000000000001\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -583,13 +463,13 @@ "233" ], "x-ms-client-request-id": [ - "5b2d0d60-133f-4dca-89c3-403ebb2a6eac" + "929d92b9-98f3-4c02-9cff-ae8563f62a87" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"03e8e9af-1a1a-403c-8cd8-18a7d6376702\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"4548bc89-1098-4954-b31d-55765203efea\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -604,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "89a21b85-b7e7-4971-bc05-7ad9d2f28f06" + "75842a52-32d0-4a01-b722-aedaf74e6cfa" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "58de09e0-c9de-4833-8418-8d155d1873c3" + "29b07d50-7262-4025-8d6e-663885f2b0b6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040256Z:58de09e0-c9de-4833-8418-8d155d1873c3" + "CENTRALUS:20150829T000421Z:29b07d50-7262-4025-8d6e-663885f2b0b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,10 +502,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:55 GMT" + "Sat, 29 Aug 2015 00:04:20 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556/hubs/SampleHub?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654/hubs/SampleHub?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -637,19 +517,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "336b3aa0-e765-450d-9efd-2d28773410c5" + "4896b49c-0065-41f2-861b-c75827b09cdb" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"03e8e9af-1a1a-403c-8cd8-18a7d6376702\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"SampleHub\",\r\n \"properties\": {\r\n \"defaultCompute\": \"SampleDefaultCompute\",\r\n \"type\": \"Hub\",\r\n \"hubId\": \"4548bc89-1098-4954-b31d-55765203efea\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "167" @@ -664,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "0d965e11-97bf-4ce5-9b9b-7310e473df08" + "abb6c350-974b-4dcb-9294-2d4dc03ef828" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14995" ], "x-ms-correlation-request-id": [ - "bff22f34-2679-47a7-b516-d0f9f604cc4c" + "892404c2-b05e-49fd-b5dc-a554dd9beab2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040256Z:bff22f34-2679-47a7-b516-d0f9f604cc4c" + "CENTRALUS:20150829T000421Z:892404c2-b05e-49fd-b5dc-a554dd9beab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -682,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:55 GMT" + "Sat, 29 Aug 2015 00:04:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -694,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556/hubs/SampleHub?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTYvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654/hubs/SampleHub?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQvaHVicy9TYW1wbGVIdWI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "982f7fdd-30da-401f-b365-beb870265209" + "3c666e83-5847-4810-8b85-f6c6555a1343" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -721,16 +601,16 @@ "15" ], "x-ms-request-id": [ - "1e41a694-ff53-42a4-b52d-5ed671329d41" + "6e9c466f-c112-4c31-9fe4-6442e77f9bd1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "068ab461-3c3c-4cda-82d5-f7950f49dfc9" + "d6653641-897e-4696-9e25-bf49831126bf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040257Z:068ab461-3c3c-4cda-82d5-f7950f49dfc9" + "CENTRALUS:20150829T000422Z:d6653641-897e-4696-9e25-bf49831126bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,10 +619,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:57 GMT" + "Sat, 29 Aug 2015 00:04:22 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556/hubs/SampleHub/operationresults/0930efb8a9f149da969af478535c5351?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654/hubs/SampleHub/operationresults/17430ebe323344018e75d339b5be34ba?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -754,16 +634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556/hubs/SampleHub/operationresults/0930efb8a9f149da969af478535c5351?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTYvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy8wOTMwZWZiOGE5ZjE0OWRhOTY5YWY0Nzg1MzVjNTM1MT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654/hubs/SampleHub/operationresults/17430ebe323344018e75d339b5be34ba?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQvaHVicy9TYW1wbGVIdWIvb3BlcmF0aW9ucmVzdWx0cy8xNzQzMGViZTMyMzM0NDAxOGU3NWQzMzliNWJlMzRiYT9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -778,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "46ec384e-13db-40d7-9aac-14acff1176bb" + "6b903e26-4459-4aa8-998c-f4961db5c96d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "e2c1016f-a921-4b0a-a34b-f6db05cee117" + "4006205e-2c73-4d59-9816-5877da11ca3f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040257Z:e2c1016f-a921-4b0a-a34b-f6db05cee117" + "CENTRALUS:20150829T000422Z:4006205e-2c73-4d59-9816-5877da11ca3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,7 +676,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:57 GMT" + "Sat, 29 Aug 2015 00:04:22 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -808,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1242/providers/Microsoft.DataFactory/datafactories/onesdk7556?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazc1NTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2237/providers/Microsoft.DataFactory/datafactories/onesdk3654?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyMzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM2NTQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a94f9b39-d61f-40d4-944b-f486bef6b25f" + "c19afcc7-67c0-44d6-ab40-157b3a2ee486" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -832,16 +712,16 @@ "no-cache" ], "x-ms-request-id": [ - "8e8a5aff-9817-470e-a5dc-66fa56a23ff3" + "2f1bf694-1f95-4b4b-bcae-b80dcf64e421" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "efcb942c-20c1-4f2e-9067-ff5685bd14bb" + "261fb790-5102-426d-92f6-58702ec21e65" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040300Z:efcb942c-20c1-4f2e-9067-ff5685bd14bb" + "CENTRALUS:20150829T000423Z:261fb790-5102-426d-92f6-58702ec21e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -850,7 +730,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:02:59 GMT" + "Sat, 29 Aug 2015 00:04:22 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -864,8 +744,8 @@ ], "Names": { "Test-HubWithDataFactoryParameter": [ - "onesdk7556", - "onesdk1242" + "onesdk3654", + "onesdk2237" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json index b11d1f4f3292..af405a013af3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedService.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14983" ], "x-ms-request-id": [ - "6741d4d6-ef2c-4c40-9c28-37815537eaea" + "453974ce-202b-4be6-b86a-33e505f578ab" ], "x-ms-correlation-request-id": [ - "6741d4d6-ef2c-4c40-9c28-37815537eaea" + "453974ce-202b-4be6-b86a-33e505f578ab" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041313Z:6741d4d6-ef2c-4c40-9c28-37815537eaea" + "CENTRALUS:20150829T001704Z:453974ce-202b-4be6-b86a-33e505f578ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:13 GMT" + "Sat, 29 Aug 2015 00:17:04 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6199\",\r\n \"name\": \"onesdk6199\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk121\",\r\n \"name\": \"onesdk121\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1191" ], "x-ms-request-id": [ - "ab6bd284-94f1-4664-92e0-83659b00bdb7" + "2858f9d9-a7cb-4d21-ba85-47ac4dc9cd06" ], "x-ms-correlation-request-id": [ - "ab6bd284-94f1-4664-92e0-83659b00bdb7" + "2858f9d9-a7cb-4d21-ba85-47ac4dc9cd06" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041314Z:ab6bd284-94f1-4664-92e0-83659b00bdb7" + "CENTRALUS:20150829T001704Z:2858f9d9-a7cb-4d21-ba85-47ac4dc9cd06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:14 GMT" + "Sat, 29 Aug 2015 00:17:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6199/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk121/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazEyMS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14982" ], "x-ms-request-id": [ - "c56ba43d-b0ea-4846-a68c-24c4cae2b080" + "7f8c534a-15f5-4efa-87a8-262c247903e8" ], "x-ms-correlation-request-id": [ - "c56ba43d-b0ea-4846-a68c-24c4cae2b080" + "7f8c534a-15f5-4efa-87a8-262c247903e8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041314Z:c56ba43d-b0ea-4846-a68c-24c4cae2b080" + "CENTRALUS:20150829T001704Z:7f8c534a-15f5-4efa-87a8-262c247903e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:14 GMT" + "Sat, 29 Aug 2015 00:17:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:1229e32c-941f-4557-8050-e5676a738d93" + "centralus:b02a0b58-ea07-4f86-9fe7-6c4a639d681c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14948" ], "x-ms-correlation-request-id": [ - "7430d030-88ef-4777-a10c-4a8a9ce8e9c9" + "7ffebf74-14b5-4e7e-9962-04332f3d1c17" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041315Z:7430d030-88ef-4777-a10c-4a8a9ce8e9c9" + "CENTRALUS:20150829T001704Z:7ffebf74-14b5-4e7e-9962-04332f3d1c17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:15 GMT" + "Sat, 29 Aug 2015 00:17:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk8445\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk7334\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "937e9909-b67f-4e08-b066-67a3d6bd1534" + "07697a78-546e-4f99-8f44-f8b0244ab936" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2edda6e9-aad5-4c1d-9719-f183e84ca51a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7334\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"54779de8-17fb-4a80-81e8-df133ca65fa1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "445" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "c80657ab-8e7c-438d-adad-8f2385d4a56b" + "54c152f5-bf3b-4a0d-a346-1bc669c884ff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1182" ], "x-ms-correlation-request-id": [ - "48a668cb-24d4-47f1-b83b-f72e6a987f39" + "9792976b-78b1-4cd9-be2f-98c956700d0b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041318Z:48a668cb-24d4-47f1-b83b-f72e6a987f39" + "CENTRALUS:20150829T001705Z:9792976b-78b1-4cd9-be2f-98c956700d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:17 GMT" + "Sat, 29 Aug 2015 00:17:05 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1209ec6-491a-4717-826b-284e87875839" + "1b594a99-6810-45ea-a4cb-a7af02bb7bb9" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2edda6e9-aad5-4c1d-9719-f183e84ca51a\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7334\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"54779de8-17fb-4a80-81e8-df133ca65fa1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "445" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,76 @@ "no-cache" ], "x-ms-request-id": [ - "b3ddd3fa-a5b6-4e33-be56-27e4adfc9056" + "d395fb53-ac09-478d-9b3a-31f0db01ba47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14969" + ], + "x-ms-correlation-request-id": [ + "3501d186-6d8a-4b23-8982-48f13edb46eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001705Z:3501d186-6d8a-4b23-8982-48f13edb46eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:17:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2626aa1-2fb5-4a26-9c4e-c5979419674d" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk7334\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"54779de8-17fb-4a80-81e8-df133ca65fa1\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "445" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "435ae382-e069-4f5a-aaac-d322f0edf54b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" ], "x-ms-correlation-request-id": [ - "de7f9f9f-9071-4fd3-b352-bb060863217a" + "418e3405-805c-48ec-bcc5-3e9fca3c2e89" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041318Z:de7f9f9f-9071-4fd3-b352-bb060863217a" + "CENTRALUS:20150829T001711Z:418e3405-805c-48ec-bcc5-3e9fca3c2e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:17 GMT" + "Sat, 29 Aug 2015 00:17:10 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81c10bc1-9e77-470e-810b-8bb31f47965a" + "ba83bff3-c97b-4a68-9b83-bc86034b9509" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8445\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"2edda6e9-aad5-4c1d-9719-f183e84ca51a\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk7334\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"54779de8-17fb-4a80-81e8-df133ca65fa1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "439" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "1b7608d8-5d8d-4b85-a707-3ca0c1332fd7" + "63bfb9f9-8e35-4eba-9207-b8de1efeff19" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14967" ], "x-ms-correlation-request-id": [ - "217af183-d4b5-45f4-ac94-7bdb3f694ff0" + "16a77531-8cfa-4244-b6bb-35571b407645" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041323Z:217af183-d4b5-45f4-ac94-7bdb3f694ff0" + "CENTRALUS:20150829T001716Z:16a77531-8cfa-4244-b6bb-35571b407645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:23 GMT" + "Sat, 29 Aug 2015 00:17:15 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDUvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzNC9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -403,16 +463,16 @@ "175" ], "x-ms-client-request-id": [ - "ca9f6450-0f79-4a8f-aaee-a2dcf9e6b87a" + "1b20ba78-b634-4a5b-b430-aba7673ce014" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8445_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk7334_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"1b8af8cf-44c4-4c95-94c8-3fb298843e50\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "377" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "1801eb95-81a0-4b1f-b687-fda2abf318dd" + "50fec9bd-7520-4397-8853-64904c0f8669" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1181" ], "x-ms-correlation-request-id": [ - "f73b18c3-8c4c-4d5d-92c1-c767081dda68" + "83ba3110-1122-46c8-9129-44131b37e95e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041324Z:f73b18c3-8c4c-4d5d-92c1-c767081dda68" + "CENTRALUS:20150829T001716Z:83ba3110-1122-46c8-9129-44131b37e95e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,10 +502,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:23 GMT" + "Sat, 29 Aug 2015 00:17:15 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -457,25 +517,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDUvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzNC9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfa61c1f-d3fc-4b22-b9fb-5c4f76a0c03b" + "4c6ebb24-a2ba-4552-8449-930aeb92d606" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8445_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk7334_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"1b8af8cf-44c4-4c95-94c8-3fb298843e50\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "377" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,16 +547,16 @@ "no-cache" ], "x-ms-request-id": [ - "9ba5afa1-1bfd-4807-8319-6cece9794bc8" + "445a3c16-6ef7-41dc-8024-30b1bcb9ea2d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14966" ], "x-ms-correlation-request-id": [ - "b7a87d4c-1096-4725-90ed-ca670095a3a2" + "60e4b3b8-cc03-4b8e-ab0e-99105d085dff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041324Z:b7a87d4c-1096-4725-90ed-ca670095a3a2" + "CENTRALUS:20150829T001716Z:60e4b3b8-cc03-4b8e-ab0e-99105d085dff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +565,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:24 GMT" + "Sat, 29 Aug 2015 00:17:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,22 +577,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDUvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzNC9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c40fa96-510b-493d-b8f2-2afe12ad15a1" + "8ba31237-9f27-4d4d-8f14-ea620a594da4" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8445_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk7334_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"1b8af8cf-44c4-4c95-94c8-3fb298843e50\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "377" ], "Content-Type": [ "application/json; charset=utf-8" @@ -544,16 +604,16 @@ "no-cache" ], "x-ms-request-id": [ - "63d77367-d887-4b43-a19b-7868908f3108" + "4201c8e8-8c33-4b86-892b-4ac4e2e9a557" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14965" ], "x-ms-correlation-request-id": [ - "bc65610a-fcca-4a3c-b040-c26d67e142b6" + "c31f11b2-3805-43be-aca7-7edc81c49c07" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041324Z:bc65610a-fcca-4a3c-b040-c26d67e142b6" + "CENTRALUS:20150829T001716Z:c31f11b2-3805-43be-aca7-7edc81c49c07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,7 +622,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:24 GMT" + "Sat, 29 Aug 2015 00:17:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -574,16 +634,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDUvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzNC9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4157ab9b-8f5e-499e-be0e-aabd78e1f5a8" + "ac67f790-c2c5-492d-9462-8e4183b3bb71" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -601,16 +661,16 @@ "15" ], "x-ms-request-id": [ - "15835aa0-ea77-4ce7-842d-9663a116c930" + "39cee546-63e6-40d7-8b1c-bf1edb730c6b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1180" ], "x-ms-correlation-request-id": [ - "547ead11-16ff-4cfd-b88b-73d96fc4cb62" + "c879db25-5c66-4f16-8888-eb7b86804dbd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041325Z:547ead11-16ff-4cfd-b88b-73d96fc4cb62" + "CENTRALUS:20150829T001716Z:c879db25-5c66-4f16-8888-eb7b86804dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -619,10 +679,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:24 GMT" + "Sat, 29 Aug 2015 00:17:16 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo/operationresults/7954c8dee111439b9c16b795fb033c4e?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo/operationresults/8527b9d91fd24552a8bee61725b64f9e?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -634,16 +694,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445/linkedservices/foo/operationresults/7954c8dee111439b9c16b795fb033c4e?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDUvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvNzk1NGM4ZGVlMTExNDM5YjljMTZiNzk1ZmIwMzNjNGU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334/linkedservices/foo/operationresults/8527b9d91fd24552a8bee61725b64f9e?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzNC9saW5rZWRzZXJ2aWNlcy9mb28vb3BlcmF0aW9ucmVzdWx0cy84NTI3YjlkOTFmZDI0NTUyYThiZWU2MTcyNWI2NGY5ZT9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -658,16 +718,16 @@ "no-cache" ], "x-ms-request-id": [ - "9102b1ac-cb29-4ec4-81e5-786544d299a2" + "36d64045-6cf2-4518-b31f-9d561f0e1879" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14964" ], "x-ms-correlation-request-id": [ - "c2d46f3d-1f01-4a40-9d7a-57b105e4faa8" + "5f73c6c8-2b68-4228-b0bd-951c3ef12890" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041325Z:c2d46f3d-1f01-4a40-9d7a-57b105e4faa8" + "CENTRALUS:20150829T001717Z:5f73c6c8-2b68-4228-b0bd-951c3ef12890" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,7 +736,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:25 GMT" + "Sat, 29 Aug 2015 00:17:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -688,16 +748,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6199/providers/Microsoft.DataFactory/datafactories/onesdk8445?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NDU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk121/providers/Microsoft.DataFactory/datafactories/onesdk7334?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2RhdGFmYWN0b3JpZXMvb25lc2RrNzMzND9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d48c71d2-0ef2-4ef9-8601-57647462df08" + "36186263-f4b7-4a44-89f0-a35802957f76" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -712,16 +772,16 @@ "no-cache" ], "x-ms-request-id": [ - "6577769e-5d01-42c8-8fce-4b1041fd798f" + "52dec1b1-b6ce-4086-816d-0626f8a1247d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1179" ], "x-ms-correlation-request-id": [ - "244360c4-e537-49fd-ad5f-de5881380afe" + "129ebbb0-7d7b-4b02-90ab-7e4bcbb800b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041329Z:244360c4-e537-49fd-ad5f-de5881380afe" + "CENTRALUS:20150829T001717Z:129ebbb0-7d7b-4b02-90ab-7e4bcbb800b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,7 +790,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:13:29 GMT" + "Sat, 29 Aug 2015 00:17:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -744,8 +804,8 @@ ], "Names": { "Test-LinkedService": [ - "onesdk8445", - "onesdk6199" + "onesdk7334", + "onesdk121" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json index 10a3dd4e5653..2fc974cf2cba 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServicePiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14947" ], "x-ms-request-id": [ - "e2c1f5a9-d541-41f4-88cb-b0035fa8f7b2" + "e8840a3c-22cb-4762-a5d6-09226949f90b" ], "x-ms-correlation-request-id": [ - "e2c1f5a9-d541-41f4-88cb-b0035fa8f7b2" + "e8840a3c-22cb-4762-a5d6-09226949f90b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041406Z:e2c1f5a9-d541-41f4-88cb-b0035fa8f7b2" + "CENTRALUS:20150829T001751Z:e8840a3c-22cb-4762-a5d6-09226949f90b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:06 GMT" + "Sat, 29 Aug 2015 00:17:50 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3Njk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8698\",\r\n \"name\": \"onesdk8698\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7769\",\r\n \"name\": \"onesdk7769\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1185" ], "x-ms-request-id": [ - "f2937c08-fbdb-4298-96c5-646ce59a2e30" + "bdf02043-6776-4b79-a17b-001b0e13632b" ], "x-ms-correlation-request-id": [ - "f2937c08-fbdb-4298-96c5-646ce59a2e30" + "bdf02043-6776-4b79-a17b-001b0e13632b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041407Z:f2937c08-fbdb-4298-96c5-646ce59a2e30" + "CENTRALUS:20150829T001751Z:bdf02043-6776-4b79-a17b-001b0e13632b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:07 GMT" + "Sat, 29 Aug 2015 00:17:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk8698/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazg2OTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk7769/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NjkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14946" ], "x-ms-request-id": [ - "f4d983ff-4ff4-4c97-85b9-9db03693056b" + "942ba907-deb3-483f-9984-1eae2ec8f134" ], "x-ms-correlation-request-id": [ - "f4d983ff-4ff4-4c97-85b9-9db03693056b" + "942ba907-deb3-483f-9984-1eae2ec8f134" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041407Z:f4d983ff-4ff4-4c97-85b9-9db03693056b" + "CENTRALUS:20150829T001751Z:942ba907-deb3-483f-9984-1eae2ec8f134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:07 GMT" + "Sat, 29 Aug 2015 00:17:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:1580062c-db7d-4bba-8733-e049af0cb49b" + "centralus:1944fd99-8382-4483-a903-2f02ed24fc1c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14963" ], "x-ms-correlation-request-id": [ - "92dd2058-3fab-45a1-8d4d-9913bd1a1f1b" + "05538d07-46d1-449b-af3f-d3ac4e1f40c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041408Z:92dd2058-3fab-45a1-8d4d-9913bd1a1f1b" + "CENTRALUS:20150829T001751Z:05538d07-46d1-449b-af3f-d3ac4e1f40c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:07 GMT" + "Sat, 29 Aug 2015 00:17:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk4378\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "45e88572-a297-46b0-88fc-d016abb6977b" + "6464d186-a6bc-4c00-8ce0-140fc56fdf2a" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4378\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9edd2f06-4426-4053-b203-8c0a68e50535\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9eb80816-1e29-4336-9c71-3588e18725bc\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "a9f1f24d-56d1-464a-a1b8-cf3a851036a3" + "e793b2f9-720f-4d59-bd90-04d32f0af4db" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1179" ], "x-ms-correlation-request-id": [ - "e6b6a761-74f9-4342-b5bd-4bb1f564cf7e" + "d67b346d-8a99-4903-b037-0eb4c39995a8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041410Z:e6b6a761-74f9-4342-b5bd-4bb1f564cf7e" + "CENTRALUS:20150829T001752Z:d67b346d-8a99-4903-b037-0eb4c39995a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:10 GMT" + "Sat, 29 Aug 2015 00:17:52 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,145 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ed18a66-a20a-47ce-a1f6-ed5ce3296021" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9eb80816-1e29-4336-9c71-3588e18725bc\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca762e78-eb51-4f35-bde5-260120a48ac3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "a27f3074-4387-4274-8b30-42d7e3d5f502" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001752Z:a27f3074-4387-4274-8b30-42d7e3d5f502" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:17:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ccbb636-a11d-48b8-88bd-d09d23bd3525" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9eb80816-1e29-4336-9c71-3588e18725bc\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d6403cf1-443f-4379-83bf-b8340c0bdaab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "bc7e3aaf-a1e2-48c6-ae3e-eff61e5c927d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001757Z:bc7e3aaf-a1e2-48c6-ae3e-eff61e5c927d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:17:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee374ba6-446f-45de-8a6d-63d793e3fa44" + "6157ff76-3357-4008-9922-09eb481db07e" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4378\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9edd2f06-4426-4053-b203-8c0a68e50535\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9eb80816-1e29-4336-9c71-3588e18725bc\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "f33beb52-fb0a-4c80-a9d6-13a4f34e1c54" + "5a08abd3-6d4f-43e1-a272-af67ee1b8ee7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14966" ], "x-ms-correlation-request-id": [ - "8e5757bd-259b-49e1-9693-5530595ea5e0" + "72e33cb3-ab2b-49f8-a89a-ef992f4d5656" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041411Z:8e5757bd-259b-49e1-9693-5530595ea5e0" + "CENTRALUS:20150829T001802Z:72e33cb3-ab2b-49f8-a89a-ef992f4d5656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:10 GMT" + "Sat, 29 Aug 2015 00:18:02 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +451,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0faf1043-6b8a-4e0e-bc9a-f05ece32a161" + "98d2adb4-d146-4f34-98a0-a0f064c8d497" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4378\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9edd2f06-4426-4053-b203-8c0a68e50535\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9eb80816-1e29-4336-9c71-3588e18725bc\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +481,16 @@ "no-cache" ], "x-ms-request-id": [ - "fe8ad1a9-6e95-49e8-aaf1-41cff6f3f24e" + "2276c856-86c9-4d91-a079-f3255c56992c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14965" ], "x-ms-correlation-request-id": [ - "9f48504e-297c-413c-ad3f-b7ebf44f200c" + "7b964e03-1617-4d71-a98a-c2720d4b508a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041416Z:9f48504e-297c-413c-ad3f-b7ebf44f200c" + "CENTRALUS:20150829T001808Z:7b964e03-1617-4d71-a98a-c2720d4b508a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +499,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:15 GMT" + "Sat, 29 Aug 2015 00:18:07 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +511,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1bb5dd9-8d8a-40df-a20f-ec41d1828461" + "140bce23-23bb-4c6b-ad78-610fccdce213" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk4378\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9edd2f06-4426-4053-b203-8c0a68e50535\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk9732\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9eb80816-1e29-4336-9c71-3588e18725bc\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +541,16 @@ "no-cache" ], "x-ms-request-id": [ - "fa2e96c3-ce7e-40ba-9786-274319e7d729" + "052113a0-03bc-46c9-b9dd-a9d798bb26a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14964" ], "x-ms-correlation-request-id": [ - "8ca0e78d-0379-4967-b7a9-e0e20c83b3af" + "c22260c7-dfd3-440d-a498-258aa6194ad4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041421Z:8ca0e78d-0379-4967-b7a9-e0e20c83b3af" + "CENTRALUS:20150829T001813Z:c22260c7-dfd3-440d-a498-258aa6194ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +559,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:21 GMT" + "Sat, 29 Aug 2015 00:18:13 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -451,8 +571,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzgvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -463,16 +583,16 @@ "175" ], "x-ms-client-request-id": [ - "90f1f7fc-0902-4288-8a0d-30a8006ba8be" + "15a6ed49-4c08-44e1-9cff-75dd8a1592f9" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk4378_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk9732_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"5f6bb02d-e662-40c8-a2dd-0150c5a950e2\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -484,16 +604,16 @@ "no-cache" ], "x-ms-request-id": [ - "eadc4ae5-53c3-4b2e-95fa-9d72b27f09fe" + "4f99d272-d43e-49d2-871a-6cde17e9d5bb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1178" ], "x-ms-correlation-request-id": [ - "95bc5f66-aa0f-4a7b-9f7b-5c2cae4e0f49" + "a38c4abf-7cab-4229-adbc-aba0dd73f7a9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041422Z:95bc5f66-aa0f-4a7b-9f7b-5c2cae4e0f49" + "CENTRALUS:20150829T001813Z:a38c4abf-7cab-4229-adbc-aba0dd73f7a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,10 +622,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:22 GMT" + "Sat, 29 Aug 2015 00:18:13 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,25 +637,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzgvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86d58a30-c91d-439b-81f3-bca049a57627" + "dba8977d-90ec-4b40-81b9-49459ccac449" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk4378_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk9732_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"5f6bb02d-e662-40c8-a2dd-0150c5a950e2\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,16 +667,16 @@ "no-cache" ], "x-ms-request-id": [ - "5b40ef37-cd45-469a-a407-5de2d18215cd" + "e2ba2c10-8f59-480c-a0e8-d10b20b45b7f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14963" ], "x-ms-correlation-request-id": [ - "d4ab0ba8-a957-4288-a709-39f4860cdac2" + "d1fd5379-ad2a-442f-a220-3281186b294d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041422Z:d4ab0ba8-a957-4288-a709-39f4860cdac2" + "CENTRALUS:20150829T001813Z:d1fd5379-ad2a-442f-a220-3281186b294d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +685,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:22 GMT" + "Sat, 29 Aug 2015 00:18:13 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -577,22 +697,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzgvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d95a3852-7c28-4705-bcf6-a36f026b69e7" + "39c1ce78-4283-4265-8f16-0cb9e0c7d12f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk4378_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk9732_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"5f6bb02d-e662-40c8-a2dd-0150c5a950e2\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,16 +724,16 @@ "no-cache" ], "x-ms-request-id": [ - "ae30f595-a5f1-47d5-ae57-fa974d0f558b" + "e1af8c17-0e9e-4284-9e87-601979e3285c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14962" ], "x-ms-correlation-request-id": [ - "6f1555be-7424-420e-a62a-346fc78f48cb" + "f4f99e27-9fc9-4109-80c3-4124562bb418" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041423Z:6f1555be-7424-420e-a62a-346fc78f48cb" + "CENTRALUS:20150829T001813Z:f4f99e27-9fc9-4109-80c3-4124562bb418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +742,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:22 GMT" + "Sat, 29 Aug 2015 00:18:13 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -634,16 +754,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzgvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d358adbe-1577-43df-8acc-bbe37bd9163b" + "7daf8a67-930a-4fdb-80dc-f407f325f396" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "{\r\n \"message\": \"Linked service foo not found.\",\r\n \"code\": \"LinkedServiceNotFound\"\r\n}", @@ -661,16 +781,16 @@ "no-cache" ], "x-ms-request-id": [ - "af92124e-9e3c-4882-a17d-075cc82f7872" + "676c2e3b-93c7-4328-90c6-13f0d45c93d6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14960" ], "x-ms-correlation-request-id": [ - "98861a27-5143-4598-94d3-a16a1617eaa0" + "c2a2b83e-c90a-4d08-ae96-1f8722b7d99b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041424Z:98861a27-5143-4598-94d3-a16a1617eaa0" + "CENTRALUS:20150829T001814Z:c2a2b83e-c90a-4d08-ae96-1f8722b7d99b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,7 +799,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:23 GMT" + "Sat, 29 Aug 2015 00:18:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -691,16 +811,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzgvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf9e8d82-ab73-4aef-985c-f9aced668271" + "be9e3b25-2668-470f-ab9c-dae26689d73e" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -718,16 +838,16 @@ "15" ], "x-ms-request-id": [ - "e3ac836e-97f8-4848-8523-07b02bc0b340" + "19091261-2a66-4bb7-9615-ab34171078ae" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1177" ], "x-ms-correlation-request-id": [ - "fe060edb-a66e-4e94-9640-a3dcd090045a" + "3b235ee3-14e1-41ad-a702-e8701ee02429" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041423Z:fe060edb-a66e-4e94-9640-a3dcd090045a" + "CENTRALUS:20150829T001813Z:3b235ee3-14e1-41ad-a702-e8701ee02429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,10 +856,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:22 GMT" + "Sat, 29 Aug 2015 00:18:13 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo/operationresults/f5489b772dab40e7af4e998440ee0706?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo/operationresults/a306430de25a465387debbc92573caf9?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -751,16 +871,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378/linkedservices/foo/operationresults/f5489b772dab40e7af4e998440ee0706?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzgvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvZjU0ODliNzcyZGFiNDBlN2FmNGU5OTg0NDBlZTA3MDY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732/linkedservices/foo/operationresults/a306430de25a465387debbc92573caf9?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzIvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvYTMwNjQzMGRlMjVhNDY1Mzg3ZGViYmM5MjU3M2NhZjk/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -775,16 +895,16 @@ "no-cache" ], "x-ms-request-id": [ - "4325c00b-8611-4943-bea5-e9009c6b76ee" + "d0619478-3d91-41d1-a82b-e35c10c906a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14961" ], "x-ms-correlation-request-id": [ - "8bd03d0c-03e6-4da7-bded-bcc750bca694" + "21cdb58b-9e44-41de-a0bc-17026327471b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041423Z:8bd03d0c-03e6-4da7-bded-bcc750bca694" + "CENTRALUS:20150829T001814Z:21cdb58b-9e44-41de-a0bc-17026327471b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,7 +913,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:23 GMT" + "Sat, 29 Aug 2015 00:18:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -805,16 +925,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk8698/providers/Microsoft.DataFactory/datafactories/onesdk4378?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazQzNzg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk7769/providers/Microsoft.DataFactory/datafactories/onesdk9732?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NjkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazk3MzI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ccffd0d-afd4-42c3-9bd9-4af15b5a9c66" + "e792429e-e271-42a9-adc2-b1a44afbd2ef" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -829,16 +949,16 @@ "no-cache" ], "x-ms-request-id": [ - "572d99ec-0a39-47f8-bce2-bc353050a88c" + "c7f9211c-6491-470a-859c-f9e2143208d0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1176" ], "x-ms-correlation-request-id": [ - "7885a36d-6df6-498e-bb5b-9219555b78cd" + "06abb0e8-20be-44b0-96be-86f191abe10b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041425Z:7885a36d-6df6-498e-bb5b-9219555b78cd" + "CENTRALUS:20150829T001814Z:06abb0e8-20be-44b0-96be-86f191abe10b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,7 +967,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:14:25 GMT" + "Sat, 29 Aug 2015 00:18:14 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -861,8 +981,8 @@ ], "Names": { "Test-LinkedServicePiping": [ - "onesdk4378", - "onesdk8698" + "onesdk9732", + "onesdk7769" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json index 9c6b9af87847..57bc689c3c67 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests/TestLinkedServiceWithDataFactoryParameter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14970" ], "x-ms-request-id": [ - "bba5c779-7d13-4e02-a18e-fc57f45776d0" + "b10910e3-6500-439c-980d-cb0e73f74dde" ], "x-ms-correlation-request-id": [ - "bba5c779-7d13-4e02-a18e-fc57f45776d0" + "b10910e3-6500-439c-980d-cb0e73f74dde" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041212Z:bba5c779-7d13-4e02-a18e-fc57f45776d0" + "CENTRALUS:20150829T001620Z:b10910e3-6500-439c-980d-cb0e73f74dde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:12 GMT" + "Sat, 29 Aug 2015 00:16:20 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk2098\",\r\n \"name\": \"onesdk2098\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk2707\",\r\n \"name\": \"onesdk2707\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1180" ], "x-ms-request-id": [ - "faed3164-a706-42cd-a707-d85a752b6eec" + "bc279a83-6fd7-4983-90c3-12712c81db1f" ], "x-ms-correlation-request-id": [ - "faed3164-a706-42cd-a707-d85a752b6eec" + "bc279a83-6fd7-4983-90c3-12712c81db1f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041213Z:faed3164-a706-42cd-a707-d85a752b6eec" + "CENTRALUS:20150829T001622Z:bc279a83-6fd7-4983-90c3-12712c81db1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:13 GMT" + "Sat, 29 Aug 2015 00:16:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk2098/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk2707/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazI3MDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14969" ], "x-ms-request-id": [ - "ee9e6a73-57ed-4743-9e9b-3a89bbb3baf4" + "8993a287-75fe-403a-9839-f733de373288" ], "x-ms-correlation-request-id": [ - "ee9e6a73-57ed-4743-9e9b-3a89bbb3baf4" + "8993a287-75fe-403a-9839-f733de373288" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041214Z:ee9e6a73-57ed-4743-9e9b-3a89bbb3baf4" + "CENTRALUS:20150829T001622Z:8993a287-75fe-403a-9839-f733de373288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:13 GMT" + "Sat, 29 Aug 2015 00:16:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:f577220c-6c31-4822-aa74-6de62d8e1fba" + "centralus:7defde8f-285d-4b8a-bc0d-2944a07f89f7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14983" ], "x-ms-correlation-request-id": [ - "2003389a-2272-4bb1-b309-0ad66af57ede" + "35a1abc3-9d4d-4176-8d93-53705fb33b55" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041214Z:2003389a-2272-4bb1-b309-0ad66af57ede" + "CENTRALUS:20150829T001622Z:35a1abc3-9d4d-4176-8d93-53705fb33b55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:13 GMT" + "Sat, 29 Aug 2015 00:16:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk235\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk3422\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "73" + "71" ], "x-ms-client-request-id": [ - "40a4fc9a-189b-4049-96b9-4ec5eb366c73" + "7b73e094-28fe-46f3-b59c-7df86143b214" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"766a94c7-40a7-4bcf-b666-315a9cac9d63\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3422\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"159907d1-6d1d-4c76-873f-8dd7eb1beaf9\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "1e6d745e-2c25-46bb-be8d-68de6b887d2c" + "abb4e6ea-c15f-4d01-af46-b46f2cd9bb9d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1194" ], "x-ms-correlation-request-id": [ - "e104bcdb-3af6-4d99-a386-5956add6163e" + "a0dcefd0-b7cf-4a87-9658-c70be5e9b215" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041217Z:e104bcdb-3af6-4d99-a386-5956add6163e" + "CENTRALUS:20150829T001623Z:a0dcefd0-b7cf-4a87-9658-c70be5e9b215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:17 GMT" + "Sat, 29 Aug 2015 00:16:23 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,85 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9b2b87db-7ed0-4ea4-bf75-d03bcf41bbe0" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"766a94c7-40a7-4bcf-b666-315a9cac9d63\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "447" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ab371bcf-244d-4ed7-b21e-b2d1df6db918" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "cdb0b05f-5b34-4164-91a0-d4a71e228612" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041217Z:cdb0b05f-5b34-4164-91a0-d4a71e228612" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:12:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76a37cfe-9d97-4c70-8b35-0c78a7ebdb9c" + "8bfa531f-ba0e-48f4-aef3-cbfa8a39c6f0" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"766a94c7-40a7-4bcf-b666-315a9cac9d63\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3422\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"159907d1-6d1d-4c76-873f-8dd7eb1beaf9\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "c3abe337-4f52-4efe-9da2-3f5797271a75" + "856b502f-2c2f-4130-abe3-49a6e04c60af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14991" ], "x-ms-correlation-request-id": [ - "6237a08f-d4ca-41d8-8d94-71e3e90e6f6e" + "92fc590c-a02c-47f5-94d9-5ec0fc0ab542" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041223Z:6237a08f-d4ca-41d8-8d94-71e3e90e6f6e" + "CENTRALUS:20150829T001623Z:92fc590c-a02c-47f5-94d9-5ec0fc0ab542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:22 GMT" + "Sat, 29 Aug 2015 00:16:23 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6558a71-4091-42ed-85fc-31437b878d6e" + "a53bbc6b-7fb7-4b04-bfbf-e8aed360c939" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk235\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"766a94c7-40a7-4bcf-b666-315a9cac9d63\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk3422\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"159907d1-6d1d-4c76-873f-8dd7eb1beaf9\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "441" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "5e000f8f-3780-4011-8a3d-7118688c94c3" + "8369de88-dc0a-4963-acfe-bd641d42c08b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14990" ], "x-ms-correlation-request-id": [ - "0e2a9183-5078-4cf1-a3fd-78db22032182" + "f403ccc3-d4dd-42e3-8932-0dd10b70b36f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041228Z:0e2a9183-5078-4cf1-a3fd-78db22032182" + "CENTRALUS:20150829T001628Z:f403ccc3-d4dd-42e3-8932-0dd10b70b36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:27 GMT" + "Sat, 29 Aug 2015 00:16:28 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -451,8 +391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNS9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -463,16 +403,16 @@ "175" ], "x-ms-client-request-id": [ - "7d3c3b3c-b02e-4622-a425-c0656699dae0" + "4adf132f-9b51-486b-a52e-7d2660837d1c" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk235_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk3422_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"dda2051c-e97c-4554-bb2c-21d054d6c411\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "332" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -484,16 +424,16 @@ "no-cache" ], "x-ms-request-id": [ - "99087466-6f2d-4f79-a0e3-9c878db317b8" + "2c58de29-655d-4b6a-ada9-c8a2291bc09b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1193" ], "x-ms-correlation-request-id": [ - "349ca160-bdc8-4577-bdea-ffcf4bb84e8f" + "bb240fb8-afe0-4b05-8343-6360c3470eb7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041229Z:349ca160-bdc8-4577-bdea-ffcf4bb84e8f" + "CENTRALUS:20150829T001629Z:bb240fb8-afe0-4b05-8343-6360c3470eb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,10 +442,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:28 GMT" + "Sat, 29 Aug 2015 00:16:29 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,25 +457,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNS9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e23b309-eef6-4407-81dc-361516833376" + "04a1b33c-8aa7-4772-a39d-6820e133744c" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk235_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk3422_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"dda2051c-e97c-4554-bb2c-21d054d6c411\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "332" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,16 +487,16 @@ "no-cache" ], "x-ms-request-id": [ - "854a5b2f-28ea-479e-892d-0d9a3cdf0aaf" + "5b7a79dd-7afe-4711-b19c-f4b1c4c6cc64" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14989" ], "x-ms-correlation-request-id": [ - "99d6a51a-9e21-4585-b7c3-220a648bba47" + "7799604c-d00e-439b-b070-d0dfb3a5d2df" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041229Z:99d6a51a-9e21-4585-b7c3-220a648bba47" + "CENTRALUS:20150829T001629Z:7799604c-d00e-439b-b070-d0dfb3a5d2df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +505,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:28 GMT" + "Sat, 29 Aug 2015 00:16:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -577,22 +517,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNS9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3472355a-5851-4f2e-954c-72031053eb8b" + "e18b6fa3-0e4e-401c-9653-a810a10d47f9" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk235_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo\",\r\n \"name\": \"foo\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk3422_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"dda2051c-e97c-4554-bb2c-21d054d6c411\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "332" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,16 +544,16 @@ "no-cache" ], "x-ms-request-id": [ - "4c3a6af2-0925-4eb8-bb5a-c12708e896d8" + "cdedef39-9550-40b4-a145-7fd04ec3a5d1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14988" ], "x-ms-correlation-request-id": [ - "b65e8c8d-a5aa-4a25-8bd2-f3911b468792" + "efd29380-337f-42da-ae86-13eaf57476a2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041229Z:b65e8c8d-a5aa-4a25-8bd2-f3911b468792" + "CENTRALUS:20150829T001629Z:efd29380-337f-42da-ae86-13eaf57476a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:28 GMT" + "Sat, 29 Aug 2015 00:16:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -634,16 +574,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNS9saW5rZWRzZXJ2aWNlcy9mb28/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjIvbGlua2Vkc2VydmljZXMvZm9vP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "440b19c4-d142-40ce-9fa7-e979f41bd14f" + "8a89e322-6cb4-4325-af3e-084c69dc1baf" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -661,16 +601,16 @@ "15" ], "x-ms-request-id": [ - "160048b0-e477-449b-8e6e-ba1435c6d7bb" + "7e269732-8a31-4ff2-a01d-ee416a008b8c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1192" ], "x-ms-correlation-request-id": [ - "567589a8-ab3c-49fa-b2d5-bcec57f6d5f0" + "ccf4d2fe-8849-4d34-9fd3-3297b78a70b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041230Z:567589a8-ab3c-49fa-b2d5-bcec57f6d5f0" + "CENTRALUS:20150829T001629Z:ccf4d2fe-8849-4d34-9fd3-3297b78a70b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,10 +619,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:30 GMT" + "Sat, 29 Aug 2015 00:16:29 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo/operationresults/5ee8f31a2b464a7692fd95d14e4f8b3c?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo/operationresults/0416553b52934a1287001852b8ebc92d?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -694,16 +634,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235/linkedservices/foo/operationresults/5ee8f31a2b464a7692fd95d14e4f8b3c?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNS9saW5rZWRzZXJ2aWNlcy9mb28vb3BlcmF0aW9ucmVzdWx0cy81ZWU4ZjMxYTJiNDY0YTc2OTJmZDk1ZDE0ZTRmOGIzYz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422/linkedservices/foo/operationresults/0416553b52934a1287001852b8ebc92d?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjIvbGlua2Vkc2VydmljZXMvZm9vL29wZXJhdGlvbnJlc3VsdHMvMDQxNjU1M2I1MjkzNGExMjg3MDAxODUyYjhlYmM5MmQ/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -718,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "5386ae78-6a85-4b6e-91bc-482eccff305f" + "cbb3a999-3f69-4203-8cfc-75f388b7b078" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14987" ], "x-ms-correlation-request-id": [ - "7b0b629b-8516-4af0-92c6-a1c9614d7271" + "2c231e9b-62cf-4e1d-8acb-8730a07fdf7b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041230Z:7b0b629b-8516-4af0-92c6-a1c9614d7271" + "CENTRALUS:20150829T001630Z:2c231e9b-62cf-4e1d-8acb-8730a07fdf7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +676,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:30 GMT" + "Sat, 29 Aug 2015 00:16:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -748,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2098/providers/Microsoft.DataFactory/datafactories/onesdk235?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazIzNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk2707/providers/Microsoft.DataFactory/datafactories/onesdk3422?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazI3MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazM0MjI/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47e4d9eb-fdd6-4c20-ae79-d1e9844165f2" + "42e9b677-2fca-4379-949e-e7cda4e02e46" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -772,16 +712,16 @@ "no-cache" ], "x-ms-request-id": [ - "3eae9c57-fa57-4317-9b73-b7262ec7c7db" + "5146097f-9b04-4c2a-be7a-f31be9259ca3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1191" ], "x-ms-correlation-request-id": [ - "73b55183-28c8-4b9c-8ba2-50163b70ff04" + "0b9438fa-c59b-44f4-a94d-eb2896dff33c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041235Z:73b55183-28c8-4b9c-8ba2-50163b70ff04" + "CENTRALUS:20150829T001630Z:0b9438fa-c59b-44f4-a94d-eb2896dff33c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,7 +730,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:12:35 GMT" + "Sat, 29 Aug 2015 00:16:30 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -804,8 +744,8 @@ ], "Names": { "Test-LinkedServiceWithDataFactoryParameter": [ - "onesdk235", - "onesdk2098" + "onesdk3422", + "onesdk2707" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json index b453a4e8884f..f10bcb8c62ac 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTable.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14994" ], "x-ms-request-id": [ - "1f10051d-66e4-4cd5-b7a7-131bf4ec34a9" + "5a8566e1-f3d7-41bd-8f56-f5861a2321e7" ], "x-ms-correlation-request-id": [ - "1f10051d-66e4-4cd5-b7a7-131bf4ec34a9" + "5a8566e1-f3d7-41bd-8f56-f5861a2321e7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041114Z:1f10051d-66e4-4cd5-b7a7-131bf4ec34a9" + "CENTRALUS:20150829T001139Z:5a8566e1-f3d7-41bd-8f56-f5861a2321e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:13 GMT" + "Sat, 29 Aug 2015 00:11:38 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1946\",\r\n \"name\": \"onesdk1946\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6250\",\r\n \"name\": \"onesdk6250\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1196" ], "x-ms-request-id": [ - "e0d80a68-b7c6-4d08-964d-42b97f7e14e4" + "a0f620ba-e3aa-42dc-bc03-85a91e9d1f38" ], "x-ms-correlation-request-id": [ - "e0d80a68-b7c6-4d08-964d-42b97f7e14e4" + "a0f620ba-e3aa-42dc-bc03-85a91e9d1f38" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041115Z:e0d80a68-b7c6-4d08-964d-42b97f7e14e4" + "CENTRALUS:20150829T001139Z:a0f620ba-e3aa-42dc-bc03-85a91e9d1f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:15 GMT" + "Sat, 29 Aug 2015 00:11:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1946/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6250/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazYyNTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14993" ], "x-ms-request-id": [ - "527f329d-73a4-4386-944d-c05e0c4bc1a0" + "5f9d1edd-ac11-4e80-b85e-4fe6f4b756dc" ], "x-ms-correlation-request-id": [ - "527f329d-73a4-4386-944d-c05e0c4bc1a0" + "5f9d1edd-ac11-4e80-b85e-4fe6f4b756dc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041115Z:527f329d-73a4-4386-944d-c05e0c4bc1a0" + "CENTRALUS:20150829T001139Z:5f9d1edd-ac11-4e80-b85e-4fe6f4b756dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:15 GMT" + "Sat, 29 Aug 2015 00:11:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,1276 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:0c6508aa-34ae-49f0-8f85-43ad572107ae" + "centralus:f7441218-65b7-46c1-a015-667f46637115" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "f199b30b-94e0-4499-ad52-222f4b75ccbd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001139Z:f199b30b-94e0-4499-ad52-222f4b75ccbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:11:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "71" + ], + "x-ms-client-request-id": [ + "47159ecf-282c-4f87-ad72-550a2861f309" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d0ab59e-6a63-4c1a-8f79-860f52487248" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "0e75e392-f417-4a7f-b873-3b88ba66f3b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001140Z:0e75e392-f417-4a7f-b873-3b88ba66f3b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:11:40 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dc9560d-78c6-4572-9135-5833b8d15767" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2692da2a-61ad-4784-9209-e1018b43ff85" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "060b3175-9e7d-491c-bf62-e9a448bf5ddd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001140Z:060b3175-9e7d-491c-bf62-e9a448bf5ddd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:11:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fb40985-ee8c-4db1-a35a-fb61e7848fa6" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff89a60f-f3e6-4302-b3ca-f41ec6f8b22a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "60bddd71-0ce6-4bb2-bb65-69d23b4ca3c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001146Z:60bddd71-0ce6-4bb2-bb65-69d23b4ca3c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:11:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add9a04c-8f5e-4b97-90a6-003771c402af" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6fc02b9f-a0c2-450e-9511-ef54006989e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "ebcaca26-1895-42fb-b3b6-d369e14e55f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001151Z:ebcaca26-1895-42fb-b3b6-d369e14e55f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:11:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38196ee4-cc46-4f2e-9372-5fe6cee021e1" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "259ca94b-becb-4ed6-98d4-a4b9b417b895" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "790e6a43-72cc-4304-b87a-06d85fa16443" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001156Z:790e6a43-72cc-4304-b87a-06d85fa16443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:11:55 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1d6342b-7bf9-4d8b-90ff-1cd3a3bb69e8" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f27a4fe-3ec9-4152-b7a7-c7a17a893787" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "f8d04293-6ee8-43bf-9de8-36e639846b78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001201Z:f8d04293-6ee8-43bf-9de8-36e639846b78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:00 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e457095c-9830-416b-abd8-e1ebf4712128" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e06d63dd-120b-4810-85b8-62002eded1d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "cdf248ab-b090-48e3-a1a7-77d630116879" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001206Z:cdf248ab-b090-48e3-a1a7-77d630116879" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43b9b0b2-d9bd-4f40-b8f4-040687180f4e" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e7f15eb-78e1-42bd-ac5e-9cfe1f7ed5db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "e92dcb95-2352-4514-a181-98c642a159e4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001211Z:e92dcb95-2352-4514-a181-98c642a159e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f60436af-d98e-4fbe-99e0-e9d653ecf7d6" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0353a80b-3c5f-4e69-af0b-413d5da7c68e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "c4e7f121-d74a-44c7-a447-44c0a65188e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001216Z:c4e7f121-d74a-44c7-a447-44c0a65188e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "211a5043-986f-4398-8d4c-a5d6dbb2c0e6" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a302f910-73cb-42f6-b59a-ba9179ef5e05" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14975" ], "x-ms-correlation-request-id": [ - "379dd968-b3aa-4a01-929e-127bec3f431d" + "1ac20a35-e8d5-4617-a9cc-0c71bff19196" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001222Z:1ac20a35-e8d5-4617-a9cc-0c71bff19196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "508bb6be-3b33-4146-8197-37ed5982685d" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c92f7116-6452-414c-b583-009caf57da5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "d4d9bae9-82f9-48fc-b74c-b3c7217c4b4a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001227Z:d4d9bae9-82f9-48fc-b74c-b3c7217c4b4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:26 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b0896e4-64f9-4bd2-8bc2-63cb128d6f27" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31a0f54c-f1e5-4f62-8617-64514bd77cf7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "182b63d4-89bd-4a01-84a5-54141ae37c9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001232Z:182b63d4-89bd-4a01-84a5-54141ae37c9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68b7db15-941e-4ddf-bc6c-f9a83b0df301" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7dd9c806-49e3-4f76-a771-66260755c943" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "815f6d96-0ec2-4931-bde4-f11db8b541bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001237Z:815f6d96-0ec2-4931-bde4-f11db8b541bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:36 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4768e579-48c5-44d6-afb8-bcaa3ff12a3a" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "15b5404d-9c88-4ee9-9511-0622b3627677" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "b1b00fef-41d4-43f3-82a9-83119dc8e73c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001242Z:b1b00fef-41d4-43f3-82a9-83119dc8e73c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d9fdeac-8014-4eb5-ac88-8ced9075a39f" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acbb11ff-dd0e-4e38-bb44-72a93c91e776" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "dd950796-48af-491e-8b01-2742a678c4b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001247Z:dd950796-48af-491e-8b01-2742a678c4b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a25220a2-5d20-4726-a418-b123aa288376" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "00372b04-6f01-4bae-9774-beff5a568ea6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "929c976b-e738-414b-a2b0-67cdb2a2a5f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001252Z:929c976b-e738-414b-a2b0-67cdb2a2a5f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f46b44d-e7af-49c0-8f21-741324714aac" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f7704e66-8e12-4745-adcf-bd4d1323e843" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "54ddd4a9-423c-4d27-92e8-4009cc57bff7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001257Z:54ddd4a9-423c-4d27-92e8-4009cc57bff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:12:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "603c64b4-3ac3-4a95-b976-7846d8b7c618" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6d015e6a-a513-43f3-8094-529684b77d40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "75792351-757b-4523-9223-e2b095c665f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001303Z:75792351-757b-4523-9223-e2b095c665f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57c6897d-c6f1-49a9-b792-d63bea95aa8a" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "927c272f-29f9-443b-9ca7-e7a057f8405b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "73170303-c494-433f-9086-3cd55ca5d330" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001308Z:73170303-c494-433f-9086-3cd55ca5d330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38009689-8b4c-4b99-941e-9d52945bff24" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "99dbc389-e262-4e2c-a540-17ced998d984" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "ca909b28-9a8c-4908-b67c-e50a233a382b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001313Z:ca909b28-9a8c-4908-b67c-e50a233a382b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c931d9e7-0d19-47b9-9dcd-103b4c2963f1" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d7d0e19-09b3-4d19-94bf-8b8105956560" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "d13cd9ca-dba3-409f-bf75-b4caccc300d4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041116Z:379dd968-b3aa-4a01-929e-127bec3f431d" + "CENTRALUS:20150829T001318Z:d13cd9ca-dba3-409f-bf75-b4caccc300d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +1459,157 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:15 GMT" + "Sat, 29 Aug 2015 00:13:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk585\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1c1414d5-ec28-481e-8c3f-226617b7d203" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab6e5aac-bdf4-4847-bdbd-600fcd8d2b0d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "53c99e27-2c54-49eb-b432-3f68eabde6cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001323Z:53c99e27-2c54-49eb-b432-3f68eabde6cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65b81cfc-5c54-40cd-881f-37044e80e655" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { "Content-Length": [ - "73" + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d60e964-fb7c-474c-a268-2350a2f43199" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "f6832640-5cbc-47d8-a108-6e8077890f2a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001328Z:f6832640-5cbc-47d8-a108-6e8077890f2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:28 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "x-ms-client-request-id": [ - "34050b55-262b-43dd-941f-3e45ebb5f183" + "6beac85e-ef8c-4140-b977-a4953f936225" + ], + "x-ms-version": [ + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk585\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"02f49b4b-2bc6-41b4-aefe-8198134b28bd\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +1621,16 @@ "no-cache" ], "x-ms-request-id": [ - "897a1a34-b251-4135-827a-1fd26b512a3f" + "fc870084-762a-4e80-b208-63dad9687d91" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" ], "x-ms-correlation-request-id": [ - "d81b46d6-9f8c-42c0-bcd2-484a98c51d05" + "d1732ada-8819-430d-9a56-bca1995c216a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041120Z:d81b46d6-9f8c-42c0-bcd2-484a98c51d05" + "CENTRALUS:20150829T001333Z:d1732ada-8819-430d-9a56-bca1995c216a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +1639,67 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:20 GMT" + "Sat, 29 Aug 2015 00:13:33 GMT" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585?api-version=2015-08-01" + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15ed0320-37b2-4214-bec9-eee23285184e" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91b3b241-fe35-47b7-9f90-a8884ff0c998" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "665bda43-65d4-491a-b2ed-80d58f7235ee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001338Z:665bda43-65d4-491a-b2ed-80d58f7235ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -268,28 +1708,88 @@ "ASP.NET" ] }, - "StatusCode": 201 + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9425ac6-a12e-4495-9ff4-60af2eb965d6" + ], + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7064cb8-9697-4204-bf4e-d03bce96acbe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "a17249b0-91a4-4afc-a0a0-c7438203e38b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001344Z:a17249b0-91a4-4afc-a0a0-c7438203e38b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:13:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03341bb9-b172-432b-bd8a-9fda386ab5c0" + "90ae48e4-6db3-4e55-b9d7-0f17767be9f3" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk585\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"02f49b4b-2bc6-41b4-aefe-8198134b28bd\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +1801,16 @@ "no-cache" ], "x-ms-request-id": [ - "76af5d80-2822-40da-adc8-25a6ffd618d3" + "ea828e8e-4281-4cb9-bf73-d938880497fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14958" ], "x-ms-correlation-request-id": [ - "409ef61a-178a-4f8e-a9ac-618951346531" + "e1ef1fd9-ca2b-4815-ab20-bdd434592fe3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041120Z:409ef61a-178a-4f8e-a9ac-618951346531" + "CENTRALUS:20150829T001349Z:e1ef1fd9-ca2b-4815-ab20-bdd434592fe3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +1819,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:20 GMT" + "Sat, 29 Aug 2015 00:13:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +1831,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca5dfe1a-77c5-4e69-a700-2b827bd14a48" + "2668ab6c-94be-4917-9162-048b2d77f672" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk585\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"02f49b4b-2bc6-41b4-aefe-8198134b28bd\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "447" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +1861,16 @@ "no-cache" ], "x-ms-request-id": [ - "db29f1af-8f81-415f-9c7c-a3981aef61c3" + "362fbf84-b967-4e4f-8671-50d10ccf7b2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14957" ], "x-ms-correlation-request-id": [ - "d6ccd316-715a-4977-8039-c6223d18a43f" + "5046ac54-ad01-42df-992b-1d8a85c723d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041126Z:d6ccd316-715a-4977-8039-c6223d18a43f" + "CENTRALUS:20150829T001354Z:5046ac54-ad01-42df-992b-1d8a85c723d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +1879,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:25 GMT" + "Sat, 29 Aug 2015 00:13:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,25 +1891,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "070636c1-3290-4ec1-8319-f0768aee388b" + "afe78828-bc2f-4931-b23a-250f3c1c713a" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk585\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"02f49b4b-2bc6-41b4-aefe-8198134b28bd\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk8463\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"5aa9c4e9-cac2-4534-95ec-2a0190143a52\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "441" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +1921,16 @@ "no-cache" ], "x-ms-request-id": [ - "1dcb67ea-89f2-481b-826c-583eb532fe91" + "846d65f6-6c35-48a7-b7be-30ccc9547275" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14956" ], "x-ms-correlation-request-id": [ - "aa92a127-0e49-482c-a78b-b57a2b45f50a" + "04b5332f-d6c3-4732-9031-313ac6934200" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041131Z:aa92a127-0e49-482c-a78b-b57a2b45f50a" + "CENTRALUS:20150829T001359Z:04b5332f-d6c3-4732-9031-313ac6934200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +1939,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:31 GMT" + "Sat, 29 Aug 2015 00:13:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -451,8 +1951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/linkedservices/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/linkedservices/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -463,16 +1963,16 @@ "175" ], "x-ms-client-request-id": [ - "3110f88d-00dc-4974-bce4-1a3621d447ad" + "13c44680-2158-4224-812b-66ee93f50e17" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk585_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8463_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"62873b5f-f2cc-4c7d-8ff6-cc885402f848\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -484,16 +1984,16 @@ "no-cache" ], "x-ms-request-id": [ - "157054ee-2333-4b80-a833-ffe9a8d3b059" + "80d27a45-aad7-4829-895b-d53e5b90dd7f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1190" ], "x-ms-correlation-request-id": [ - "242bf033-3050-49cb-9be6-eaffbb111f75" + "c3fe77dc-cf06-4d26-9737-7126ade928cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041132Z:242bf033-3050-49cb-9be6-eaffbb111f75" + "CENTRALUS:20150829T001359Z:c3fe77dc-cf06-4d26-9737-7126ade928cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,10 +2002,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:32 GMT" + "Sat, 29 Aug 2015 00:13:59 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/linkedservices/foo2?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/linkedservices/foo2?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,25 +2017,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/linkedservices/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/linkedservices/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "302d9427-186f-40f2-90ac-28a2f36de939" + "3d1dd35a-7c3c-483c-8824-ce73760f4fe6" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk585_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8463_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"62873b5f-f2cc-4c7d-8ff6-cc885402f848\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "334" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,16 +2047,16 @@ "no-cache" ], "x-ms-request-id": [ - "374c81ad-9106-4cbb-adfc-98fdc28923cd" + "00972953-2d5a-4a89-be2e-11c5782c26e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14955" ], "x-ms-correlation-request-id": [ - "c9bce97b-5303-48cd-9e14-da86a8caa8d3" + "0ab79a02-0a80-401e-8c53-4744002a3f1c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041132Z:c9bce97b-5303-48cd-9e14-da86a8caa8d3" + "CENTRALUS:20150829T001400Z:0ab79a02-0a80-401e-8c53-4744002a3f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +2065,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:32 GMT" + "Sat, 29 Aug 2015 00:13:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -577,8 +2077,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -589,16 +2089,16 @@ "283" ], "x-ms-client-request-id": [ - "a8e9ca58-b293-474a-a9b3-ee4028f1bdec" + "f8612bfe-f912-4588-9254-f36645b7b386" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:11:32.6748863Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"6ce69d73-9671-43b3-bdee-70be9c35fcb0\",\r\n \"createTime\": \"2015-08-29T00:14:00.0946655Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "423" + "468" ], "Content-Type": [ "application/json; charset=utf-8" @@ -610,16 +2110,16 @@ "no-cache" ], "x-ms-request-id": [ - "1ca1dfe1-ec8f-405c-92ac-292c554484f7" + "375036d9-1d72-4c86-acf4-4a26b04c7675" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1189" ], "x-ms-correlation-request-id": [ - "790f1d87-f7a2-45ba-a675-2bff0aa91c0a" + "30fc90c6-e7a1-4076-99d3-bc31415b1d59" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041133Z:790f1d87-f7a2-45ba-a675-2bff0aa91c0a" + "CENTRALUS:20150829T001400Z:30fc90c6-e7a1-4076-99d3-bc31415b1d59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -628,10 +2128,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:32 GMT" + "Sat, 29 Aug 2015 00:14:00 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -643,25 +2143,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee7e953-edbe-4fcf-840c-5061589f5ce3" + "60400af2-1fa5-42b5-8de9-449cd8a75c31" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:11:33.0902318Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"6ce69d73-9671-43b3-bdee-70be9c35fcb0\",\r\n \"createTime\": \"2015-08-29T00:13:59.9423591Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -673,16 +2173,16 @@ "no-cache" ], "x-ms-request-id": [ - "9d99cc31-8438-4dfc-85b3-80d03b83fdab" + "15685368-aa14-4fdf-9a93-ae6867813a14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14954" ], "x-ms-correlation-request-id": [ - "f3af2b4d-ff2d-4074-968f-355da4527924" + "0c4c4a58-b5a6-4d89-986e-dfdd0c9617a0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041133Z:f3af2b4d-ff2d-4074-968f-355da4527924" + "CENTRALUS:20150829T001400Z:0c4c4a58-b5a6-4d89-986e-dfdd0c9617a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +2191,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:33 GMT" + "Sat, 29 Aug 2015 00:14:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -703,22 +2203,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8a8c32c-be76-44a7-aa5c-9c00d8422902" + "ea6a5988-b504-4806-a423-21f26ab6e97d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:11:33.0902318Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"6ce69d73-9671-43b3-bdee-70be9c35fcb0\",\r\n \"createTime\": \"2015-08-29T00:13:59.9423591Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,16 +2230,16 @@ "no-cache" ], "x-ms-request-id": [ - "57ba75ac-c6f1-431b-8b81-d4ccdf42a41d" + "5033c9c7-e6c2-4ddf-964f-27150f754a0a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14953" ], "x-ms-correlation-request-id": [ - "caed4626-7144-413e-beca-22573bc8a3d3" + "f3f3ce14-5667-4087-a98e-a41b0ee3ec1b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041133Z:caed4626-7144-413e-beca-22573bc8a3d3" + "CENTRALUS:20150829T001400Z:f3f3ce14-5667-4087-a98e-a41b0ee3ec1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,7 +2248,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:33 GMT" + "Sat, 29 Aug 2015 00:14:00 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -760,16 +2260,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS90YWJsZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "446a1268-c312-43c0-9d9f-0bf550510880" + "edfdc1e7-7075-4b0d-a82c-ca8e3f2dce76" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -787,16 +2287,76 @@ "15" ], "x-ms-request-id": [ - "0dd45948-ba42-41ec-817b-22524ba6aa0d" + "de0b7b8b-abdd-4295-9df9-79e55e6a87d3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1188" + ], + "x-ms-correlation-request-id": [ + "bb435716-e7b0-4970-902c-40c71f002bee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150829T001400Z:bb435716-e7b0-4970-902c-40c71f002bee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 29 Aug 2015 00:14:00 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2/operationresults/499541ca0d31423094eb46086a13d086?api-version=2015-09-01" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2/operationresults/499541ca0d31423094eb46086a13d086?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvZGF0YXNldHMvZm9vMi9vcGVyYXRpb25yZXN1bHRzLzQ5OTU0MWNhMGQzMTQyMzA5NGViNDYwODZhMTNkMDg2P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-09-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "44c42e38-48fb-44f5-8cb2-563d9c0983bb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" ], "x-ms-correlation-request-id": [ - "51924067-15ad-4159-b5d1-d12ebd7b726e" + "248c2c46-1a08-4e9e-a148-e78fd5a950a9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041134Z:51924067-15ad-4159-b5d1-d12ebd7b726e" + "CENTRALUS:20150829T001401Z:248c2c46-1a08-4e9e-a148-e78fd5a950a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -805,10 +2365,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:33 GMT" + "Sat, 29 Aug 2015 00:14:00 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2/operationresults/2b271c23b03446d395749f1e0cdce1a0?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2/operationresults/499541ca0d31423094eb46086a13d086?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -820,16 +2380,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585/tables/foo2/operationresults/2b271c23b03446d395749f1e0cdce1a0?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NS90YWJsZXMvZm9vMi9vcGVyYXRpb25yZXN1bHRzLzJiMjcxYzIzYjAzNDQ2ZDM5NTc0OWYxZTBjZGNlMWEwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463/datasets/foo2/operationresults/499541ca0d31423094eb46086a13d086?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjMvZGF0YXNldHMvZm9vMi9vcGVyYXRpb25yZXN1bHRzLzQ5OTU0MWNhMGQzMTQyMzA5NGViNDYwODZhMTNkMDg2P2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -844,16 +2404,16 @@ "no-cache" ], "x-ms-request-id": [ - "dc7540d9-effe-4ef5-b746-1dfc4674a7f4" + "a7f9cd2d-eb1c-4d3b-a2f6-2a5f1a0d4825" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14951" ], "x-ms-correlation-request-id": [ - "7901bfa8-391b-4016-af74-f15638399e87" + "15a6d658-f907-44fc-a5b8-584c59beb550" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041134Z:7901bfa8-391b-4016-af74-f15638399e87" + "CENTRALUS:20150829T001416Z:15a6d658-f907-44fc-a5b8-584c59beb550" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,7 +2422,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:34 GMT" + "Sat, 29 Aug 2015 00:14:16 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -874,16 +2434,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1946/providers/Microsoft.DataFactory/datafactories/onesdk585?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6250/providers/Microsoft.DataFactory/datafactories/onesdk8463?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg0NjM/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfd5bde1-2c09-4f85-a5ec-279276c9d459" + "792a9b10-fcf0-4b42-b51d-42959a016d3f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -898,16 +2458,16 @@ "no-cache" ], "x-ms-request-id": [ - "5386c49b-9ba4-44a0-acb8-a419643a2b55" + "b1525e18-b1ec-4046-ad1e-07783ddf905f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1187" ], "x-ms-correlation-request-id": [ - "fc15389c-d2f9-4731-841e-d2836e013b97" + "a4975de2-8103-4890-9bed-b23090eb5ae5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041135Z:fc15389c-d2f9-4731-841e-d2836e013b97" + "CENTRALUS:20150829T001417Z:a4975de2-8103-4890-9bed-b23090eb5ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,7 +2476,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:11:35 GMT" + "Sat, 29 Aug 2015 00:14:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -930,8 +2490,8 @@ ], "Names": { "Test-Table": [ - "onesdk585", - "onesdk1946" + "onesdk8463", + "onesdk6250" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json index 633801b0ca88..69996daa19f8 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTablePiping.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1Mzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14950" ], "x-ms-request-id": [ - "d160ceb1-cdaf-46a0-9f3b-390123bdf7af" + "afe5195e-80f6-4175-8abd-b66882c2496c" ], "x-ms-correlation-request-id": [ - "d160ceb1-cdaf-46a0-9f3b-390123bdf7af" + "afe5195e-80f6-4175-8abd-b66882c2496c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040959Z:d160ceb1-cdaf-46a0-9f3b-390123bdf7af" + "CENTRALUS:20150829T001533Z:afe5195e-80f6-4175-8abd-b66882c2496c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:09:59 GMT" + "Sat, 29 Aug 2015 00:15:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1Mzc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5696\",\r\n \"name\": \"onesdk5696\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6537\",\r\n \"name\": \"onesdk6537\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1186" ], "x-ms-request-id": [ - "cb4b1153-4f19-4334-928b-9fb26360286f" + "392d4993-484b-4c65-8ad3-5038c46acff2" ], "x-ms-correlation-request-id": [ - "cb4b1153-4f19-4334-928b-9fb26360286f" + "392d4993-484b-4c65-8ad3-5038c46acff2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041000Z:cb4b1153-4f19-4334-928b-9fb26360286f" + "CENTRALUS:20150829T001533Z:392d4993-484b-4c65-8ad3-5038c46acff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:00 GMT" + "Sat, 29 Aug 2015 00:15:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk5696/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazU2OTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk6537/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazY1MzcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14949" ], "x-ms-request-id": [ - "7ddb3777-06b0-429b-b893-94273a24193f" + "33a23aa3-ae64-497b-a047-c5107065df96" ], "x-ms-correlation-request-id": [ - "7ddb3777-06b0-429b-b893-94273a24193f" + "33a23aa3-ae64-497b-a047-c5107065df96" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041001Z:7ddb3777-06b0-429b-b893-94273a24193f" + "CENTRALUS:20150829T001533Z:33a23aa3-ae64-497b-a047-c5107065df96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:00 GMT" + "Sat, 29 Aug 2015 00:15:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:dae2bcd5-f04a-4612-87dd-5a79e36915eb" + "centralus:2c76daf8-66c0-4767-a32f-b142fe1a54b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14971" ], "x-ms-correlation-request-id": [ - "1b07be2a-995f-4e56-8a00-55f5f18bbaeb" + "13a43958-75d5-4099-bf8e-3e43fbdf608c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041001Z:1b07be2a-995f-4e56-8a00-55f5f18bbaeb" + "CENTRALUS:20150829T001533Z:13a43958-75d5-4099-bf8e-3e43fbdf608c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:01 GMT" + "Sat, 29 Aug 2015 00:15:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Nz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk5279\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk867\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "70" ], "x-ms-client-request-id": [ - "f7ddab41-b1af-4852-ac11-6964c025d270" + "a2a82d7c-e7c0-414c-b1c0-cd784913c10d" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5279\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"48a58b55-4655-4334-845c-c496b4fc4ef0\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk867\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"228c66ea-10de-4941-9ee2-a4bf84a62845\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "90f7715e-63bb-4463-bd84-7e3b28af14ef" + "ee5f53d5-3e9f-44bd-9a23-2fd0056db367" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1188" ], "x-ms-correlation-request-id": [ - "748cc6e9-4405-4b1e-9e27-7be1046036ef" + "884b703f-8cb9-4443-8481-9ecca0cafde7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041004Z:748cc6e9-4405-4b1e-9e27-7be1046036ef" + "CENTRALUS:20150829T001534Z:884b703f-8cb9-4443-8481-9ecca0cafde7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:04 GMT" + "Sat, 29 Aug 2015 00:15:33 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Nz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5733a1-24af-4380-aeaf-455db70f13e8" + "80aa0e76-e0b4-4b56-8ad6-bc02a8719e38" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5279\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"48a58b55-4655-4334-845c-c496b4fc4ef0\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk867\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"228c66ea-10de-4941-9ee2-a4bf84a62845\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "f51a5c98-f72a-4092-8e8c-8b6512a2a8ac" + "8c0d0ce4-28eb-403f-a1ba-9cee8ff60a28" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14978" ], "x-ms-correlation-request-id": [ - "f5899523-e8ca-4d52-bb91-e671cbce1430" + "e4f03d05-cb5f-4a20-942c-79e3ae6e1a6d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041004Z:f5899523-e8ca-4d52-bb91-e671cbce1430" + "CENTRALUS:20150829T001535Z:e4f03d05-cb5f-4a20-942c-79e3ae6e1a6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:04 GMT" + "Sat, 29 Aug 2015 00:15:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Nz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "927a1bab-103c-4f3a-91ee-4693be6c8f85" + "183ef2da-17a2-44c5-8a95-d2c70cea01ee" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk5279\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"48a58b55-4655-4334-845c-c496b4fc4ef0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk867\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"228c66ea-10de-4941-9ee2-a4bf84a62845\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "443" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "cd5ba9f5-bce8-4c9c-97a1-4c12a7493e3a" + "0226bdfb-b691-492e-bf0c-f748cadde467" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14977" ], "x-ms-correlation-request-id": [ - "e662100b-793e-4d67-83cf-bed01779c819" + "903697f2-1dd1-4e9f-b292-e96d349cbd98" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041009Z:e662100b-793e-4d67-83cf-bed01779c819" + "CENTRALUS:20150829T001540Z:903697f2-1dd1-4e9f-b292-e96d349cbd98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:09 GMT" + "Sat, 29 Aug 2015 00:15:39 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,91 +391,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/linkedservices/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "175" - ], - "x-ms-client-request-id": [ - "5dab8948-e41b-44a4-bf14-65a9ce3122fb" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk5279_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "342" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c85f9355-77c6-45a1-a303-3871897a6ed1" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" - ], - "x-ms-correlation-request-id": [ - "18385e7e-7a4e-4902-85c4-906f98b2b03c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041011Z:18385e7e-7a4e-4902-85c4-906f98b2b03c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:10:10 GMT" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/linkedservices/foo2?api-version=2015-08-01" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/linkedservices/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Nz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ae12aa5-b2b2-40d5-8a32-2f5f2b41af98" + "4e618c5c-d005-4f10-9c04-29a6badc469d" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk5279_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk867\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"228c66ea-10de-4941-9ee2-a4bf84a62845\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "336" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,16 +421,16 @@ "no-cache" ], "x-ms-request-id": [ - "5d5939c7-b561-41a2-9006-9889aaa6472c" + "fa56b292-e898-404e-8a3b-e3e5b2d3a32f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14976" ], "x-ms-correlation-request-id": [ - "f0154600-fc1c-49e2-8cf5-dcc786423844" + "14f39eeb-48cb-41f9-83b2-7ba07acf9ad4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041011Z:f0154600-fc1c-49e2-8cf5-dcc786423844" + "CENTRALUS:20150829T001545Z:14f39eeb-48cb-41f9-83b2-7ba07acf9ad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +439,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:11 GMT" + "Sat, 29 Aug 2015 00:15:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,28 +451,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/linkedservices/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "283" + "175" ], "x-ms-client-request-id": [ - "fb1729c3-f69d-4b05-860b-9a93c4e56cf8" + "8f265398-28a9-4405-9122-d7a7aa365a04" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:10:12.6491185Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk867_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"b8949108-e87b-4637-8b4b-a5392e87922e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "424" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -550,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "22d36a37-8212-457c-a0ce-e3af7f9f9786" + "7a052c1f-1cfa-4a7a-ba76-50d143718f3b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1187" ], "x-ms-correlation-request-id": [ - "33bebb7e-52da-4ad2-aa2c-26c1813d4d7b" + "fbd1ae72-217a-41da-8e49-bb99dee3926b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041013Z:33bebb7e-52da-4ad2-aa2c-26c1813d4d7b" + "CENTRALUS:20150829T001545Z:fbd1ae72-217a-41da-8e49-bb99dee3926b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,10 +502,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:13 GMT" + "Sat, 29 Aug 2015 00:15:45 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/linkedservices/foo2?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -583,25 +517,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/linkedservices/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9saW5rZWRzZXJ2aWNlcy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "103991ba-656c-499e-8b0c-c4851668a5be" + "bee1cb3a-76a9-4f76-a271-b16b0df939ac" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:10:12.6491185Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk867_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"b8949108-e87b-4637-8b4b-a5392e87922e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "424" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -613,16 +547,16 @@ "no-cache" ], "x-ms-request-id": [ - "695d00da-2da9-41c5-8afd-74d3ce80f7bf" + "fa38255b-6bd4-42f4-98c4-d44d55d2f3a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14975" ], "x-ms-correlation-request-id": [ - "d2db4169-996d-4b73-8f64-7a2b0a4aa6a7" + "6e348035-6762-4a5b-b52b-3c111ad89b48" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041013Z:d2db4169-996d-4b73-8f64-7a2b0a4aa6a7" + "CENTRALUS:20150829T001545Z:6e348035-6762-4a5b-b52b-3c111ad89b48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -631,7 +565,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:13 GMT" + "Sat, 29 Aug 2015 00:15:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -643,25 +577,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9kYXRhc2V0cy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { - "x-ms-client-request-id": [ - "031a476c-9368-48db-9e2b-9731ecf464ea" + "Content-Type": [ + "application/json" ], - "x-ms-version": [ - "2015-08-01" + "Content-Length": [ + "283" + ], + "x-ms-client-request-id": [ + "6c3cf4c6-b980-41ff-9a19-1874a93889c0" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:10:12.7007344Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"55007935-b0c1-4767-9ca5-b8f8f87f8d3c\",\r\n \"createTime\": \"2015-08-29T00:15:45.8800428Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -673,16 +610,16 @@ "no-cache" ], "x-ms-request-id": [ - "98c50ae4-17a9-40f2-85c6-84c28abbe525" + "17ed1a2f-a4f9-42d3-89ac-930679185fe7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" ], "x-ms-correlation-request-id": [ - "521ca3ca-06d0-4d5e-9c70-9d6806473060" + "4ff6911f-348c-4739-ba7b-c7f38f6b7be1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041019Z:521ca3ca-06d0-4d5e-9c70-9d6806473060" + "CENTRALUS:20150829T001546Z:4ff6911f-348c-4739-ba7b-c7f38f6b7be1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,7 +628,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:18 GMT" + "Sat, 29 Aug 2015 00:15:46 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -700,25 +640,28 @@ "ASP.NET" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9kYXRhc2V0cy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f21b9f8-5d0a-4c4c-b0a1-294c0e48def4" + "6880a01f-31e6-4277-9c32-34b8454f87c9" + ], + "x-ms-version": [ + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:10:12.7007344Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"55007935-b0c1-4767-9ca5-b8f8f87f8d3c\",\r\n \"createTime\": \"2015-08-29T00:15:45.7430136Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,16 +673,16 @@ "no-cache" ], "x-ms-request-id": [ - "b60e1806-997f-4083-95dc-df961f6493c8" + "07b3271d-6fda-41c7-8d63-a4240323a1a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14974" ], "x-ms-correlation-request-id": [ - "2b620dbd-db48-4920-8c9c-fc12ef497854" + "b1fd583f-ac4a-4b34-861d-f654b4a77e9a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041019Z:2b620dbd-db48-4920-8c9c-fc12ef497854" + "CENTRALUS:20150829T001546Z:b1fd583f-ac4a-4b34-861d-f654b4a77e9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -748,7 +691,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:18 GMT" + "Sat, 29 Aug 2015 00:15:46 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -760,22 +703,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9kYXRhc2V0cy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f91801d-2364-4e2c-87bf-5d844ed667d0" + "341af481-9e1d-43ae-959c-9945ffbee8a5" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"message\": \"Table foo2 not found.\",\r\n \"code\": \"TableNotFound\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"55007935-b0c1-4767-9ca5-b8f8f87f8d3c\",\r\n \"createTime\": \"2015-08-29T00:15:45.7430136Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "58" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -787,16 +730,16 @@ "no-cache" ], "x-ms-request-id": [ - "cc53babf-f3fa-4805-9f8d-d2c6f90aa82d" + "b2c042b1-6f9e-4c6a-b598-8c8bca3bb305" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14973" ], "x-ms-correlation-request-id": [ - "ca52b7df-9022-407f-8a09-9f5a38575353" + "4955d8ec-edf1-496f-a66c-4faef796f8e7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041036Z:ca52b7df-9022-407f-8a09-9f5a38575353" + "CENTRALUS:20150829T001546Z:4955d8ec-edf1-496f-a66c-4faef796f8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -805,7 +748,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:35 GMT" + "Sat, 29 Aug 2015 00:15:46 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -814,25 +757,28 @@ "ASP.NET" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9kYXRhc2V0cy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e02cad-2c01-4450-b73b-42bd76aafc9d" + "9ab1b300-30f0-4454-9ba0-d81d8916ec27" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"message\": \"Dataset foo2 not found.\",\r\n \"code\": \"TableNotFound\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "60" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -840,20 +786,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "3fc93ccb-47e4-4884-aa6e-856c8d330e34" + "ab0a1cc2-b6b1-4304-9e72-5318ada2304e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" ], "x-ms-correlation-request-id": [ - "e559e95b-f659-47ee-8a54-ab7211a878a2" + "bf4fc690-fe92-4872-91a4-778f50c867ca" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041019Z:e559e95b-f659-47ee-8a54-ab7211a878a2" + "CENTRALUS:20150829T001546Z:bf4fc690-fe92-4872-91a4-778f50c867ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,10 +805,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:19 GMT" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2/operationresults/849369cd620e481fb45ce84db87f1cb1?api-version=2015-08-01" + "Sat, 29 Aug 2015 00:15:46 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -874,19 +814,19 @@ "ASP.NET" ] }, - "StatusCode": 202 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2/operationresults/849369cd620e481fb45ce84db87f1cb1?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy84NDkzNjljZDYyMGU0ODFmYjQ1Y2U4NGRiODdmMWNiMT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9kYXRhc2V0cy9mb28yP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2015-08-01" + "x-ms-client-request-id": [ + "99fe9564-1020-41c9-8fa0-b4bb94c5124f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -904,16 +844,16 @@ "15" ], "x-ms-request-id": [ - "6c234a0d-a4f6-4e6a-b8af-4592437c6497" + "d9bad1a8-6410-4697-8864-2013ddcdb4d0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" ], "x-ms-correlation-request-id": [ - "23ca3073-2a2b-49e5-a092-11a1dcd6bb2e" + "12f65359-5c91-48b9-81e4-1367268e61c5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041020Z:23ca3073-2a2b-49e5-a092-11a1dcd6bb2e" + "CENTRALUS:20150829T001546Z:12f65359-5c91-48b9-81e4-1367268e61c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,10 +862,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:19 GMT" + "Sat, 29 Aug 2015 00:15:46 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2/operationresults/849369cd620e481fb45ce84db87f1cb1?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2/operationresults/bbbfdb1ccf8e4b5eb1628b60b18676a7?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -937,16 +877,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279/tables/foo2/operationresults/849369cd620e481fb45ce84db87f1cb1?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzkvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy84NDkzNjljZDYyMGU0ODFmYjQ1Y2U4NGRiODdmMWNiMT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867/datasets/foo2/operationresults/bbbfdb1ccf8e4b5eb1628b60b18676a7?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Ny9kYXRhc2V0cy9mb28yL29wZXJhdGlvbnJlc3VsdHMvYmJiZmRiMWNjZjhlNGI1ZWIxNjI4YjYwYjE4Njc2YTc/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -961,16 +901,16 @@ "no-cache" ], "x-ms-request-id": [ - "ef37fba7-411b-424b-9648-a9dba77ec3d3" + "321fd510-819b-4307-b7c3-e61acf9b8fac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14972" ], "x-ms-correlation-request-id": [ - "4a86d3fd-ef0b-49ea-b43a-720d95073793" + "21b831a4-0f87-4c82-b40f-622f88de2061" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041035Z:4a86d3fd-ef0b-49ea-b43a-720d95073793" + "CENTRALUS:20150829T001546Z:21b831a4-0f87-4c82-b40f-622f88de2061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,7 +919,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:35 GMT" + "Sat, 29 Aug 2015 00:15:46 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -991,16 +931,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk5696/providers/Microsoft.DataFactory/datafactories/onesdk5279?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazU2OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazUyNzk/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk6537/providers/Microsoft.DataFactory/datafactories/onesdk867?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazY1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg2Nz9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d96a980-235d-4d3c-ba37-08b645f32e17" + "e41abe28-9121-4407-adb1-102c73a9ac1f" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -1015,16 +955,16 @@ "no-cache" ], "x-ms-request-id": [ - "5d509c66-cde7-43e1-b43e-cec58018f121" + "e3bb9db6-e101-491f-b04e-3ce84569ef2a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1184" ], "x-ms-correlation-request-id": [ - "43d674e1-a724-42fd-b043-ca37e9f53bbf" + "f8d0e78e-0d08-47b3-8197-aeb1a9720709" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T041037Z:43d674e1-a724-42fd-b043-ca37e9f53bbf" + "CENTRALUS:20150829T001547Z:f8d0e78e-0d08-47b3-8197-aeb1a9720709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,7 +973,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:10:37 GMT" + "Sat, 29 Aug 2015 00:15:47 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1047,8 +987,8 @@ ], "Names": { "Test-TablePiping": [ - "onesdk5279", - "onesdk5696" + "onesdk867", + "onesdk6537" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json index 740dde61234d..874406a9c5a8 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.TableTests/TestTableWithDataFactoryParameter.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14980" ], "x-ms-request-id": [ - "5ed987fc-434e-4ca8-9b05-181754ba2d77" + "4f2183ad-ebeb-4480-9382-3e786d9f9c4a" ], "x-ms-correlation-request-id": [ - "5ed987fc-434e-4ca8-9b05-181754ba2d77" + "4f2183ad-ebeb-4480-9382-3e786d9f9c4a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040837Z:5ed987fc-434e-4ca8-9b05-181754ba2d77" + "CENTRALUS:20150829T001451Z:4f2183ad-ebeb-4480-9382-3e786d9f9c4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,31 +46,31 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:37 GMT" + "Sat, 29 Aug 2015 00:14:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "34" + "31" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9350\",\r\n \"name\": \"onesdk9350\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1272\",\r\n \"name\": \"onesdk1272\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "178" + "174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1189" ], "x-ms-request-id": [ - "6a502f67-7b82-43d2-9b3e-6a305ed6e3fd" + "a3a6bf7c-b2cf-4214-9014-77948128dfaa" ], "x-ms-correlation-request-id": [ - "6a502f67-7b82-43d2-9b3e-6a305ed6e3fd" + "a3a6bf7c-b2cf-4214-9014-77948128dfaa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040838Z:6a502f67-7b82-43d2-9b3e-6a305ed6e3fd" + "CENTRALUS:20150829T001451Z:a3a6bf7c-b2cf-4214-9014-77948128dfaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:38 GMT" + "Sat, 29 Aug 2015 00:14:51 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk9350/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazkzNTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourceGroups/onesdk1272/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlR3JvdXBzL29uZXNkazEyNzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14979" ], "x-ms-request-id": [ - "b5ac155c-727d-421d-a29b-c2f3715ca179" + "4820668b-b79d-4518-96b9-5a64d5821ef1" ], "x-ms-correlation-request-id": [ - "b5ac155c-727d-421d-a29b-c2f3715ca179" + "4820668b-b79d-4518-96b9-5a64d5821ef1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040838Z:b5ac155c-727d-421d-a29b-c2f3715ca179" + "CENTRALUS:20150829T001451Z:4820668b-b79d-4518-96b9-5a64d5821ef1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:38 GMT" + "Sat, 29 Aug 2015 00:14:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -181,16 +181,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westeurope:8492381d-bdf5-478e-b8fc-69c4af79680a" + "centralus:630b9fc8-b522-43a6-88ad-db48f9ae2cc2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14972" ], "x-ms-correlation-request-id": [ - "4454ac7c-e96f-4f9e-9bed-efe43e9aa649" + "e6be8000-47d5-4404-9ee1-c7c30b9f0d32" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040839Z:4454ac7c-e96f-4f9e-9bed-efe43e9aa649" + "CENTRALUS:20150829T001451Z:e6be8000-47d5-4404-9ee1-c7c30b9f0d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,34 +199,34 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:39 GMT" + "Sat, 29 Aug 2015 00:14:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"onesdk8555\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"name\": \"onesdk5955\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "74" + "71" ], "x-ms-client-request-id": [ - "cd389160-a0a8-47b0-ab6d-395451297481" + "405bc555-114b-4c87-9c5d-34fde84f9558" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8555\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1cc4dcb8-9990-4327-8db6-9c9f4c78e891\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5955\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ccea002-d4a6-4492-8e72-efdb0138a672\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-request-id": [ - "498c8fbc-eb47-4722-b979-ad4a97b76e6e" + "7a74c283-a3a9-4040-86d5-4e0278396ef4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1194" ], "x-ms-correlation-request-id": [ - "8842d262-d0f7-4603-810c-871a2a9beed3" + "5210d4e7-e29c-4eca-ace6-9777a4d212cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040842Z:8842d262-d0f7-4603-810c-871a2a9beed3" + "CENTRALUS:20150829T001452Z:5210d4e7-e29c-4eca-ace6-9777a4d212cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,10 +256,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:41 GMT" + "Sat, 29 Aug 2015 00:14:52 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -271,25 +271,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b7fa030-fa9f-4eac-b3f3-03b550211a93" + "bb647b3a-c775-42da-a56a-844cfe2dd12d" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8555\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1cc4dcb8-9990-4327-8db6-9c9f4c78e891\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5955\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ccea002-d4a6-4492-8e72-efdb0138a672\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +301,16 @@ "no-cache" ], "x-ms-request-id": [ - "ae55c1f9-a3a9-4f5a-a08c-f5a1282a5973" + "9de42dab-a1ea-4118-a5b6-1abc475d8fd6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14989" ], "x-ms-correlation-request-id": [ - "9283e5df-0961-4911-91d1-01a9192fc9ed" + "33379d72-8db2-4e08-8f38-3b7dc7c554dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040842Z:9283e5df-0961-4911-91d1-01a9192fc9ed" + "CENTRALUS:20150829T001452Z:33379d72-8db2-4e08-8f38-3b7dc7c554dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,7 +319,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:41 GMT" + "Sat, 29 Aug 2015 00:14:52 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -331,25 +331,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcbddcef-d18c-4b8f-a41d-af9a80d21e92" + "0a1f5686-d10e-4896-ac6b-0c59dbe5136f" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"onesdk8555\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1cc4dcb8-9990-4327-8db6-9c9f4c78e891\",\r\n \"provisioningState\": \"PendingCreation\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"onesdk5955\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"9ccea002-d4a6-4492-8e72-efdb0138a672\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "26073982-b402-4b1a-9c32-fe4254e03418" + "b4fa8a42-559f-4897-8b8b-8ab0ae72033f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14988" ], "x-ms-correlation-request-id": [ - "d9da2802-5e90-455f-9fea-feb1335fce89" + "dde352ed-7103-440a-bfd9-b9a1e440b56b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040847Z:d9da2802-5e90-455f-9fea-feb1335fce89" + "CENTRALUS:20150829T001457Z:dde352ed-7103-440a-bfd9-b9a1e440b56b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:47 GMT" + "Sat, 29 Aug 2015 00:14:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -391,68 +391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1af0ca86-1c76-48b8-a03c-0024b6556be5" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"onesdk8555\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555\",\r\n \"type\": \"Microsoft.DataFactory/datafactories\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dataFactoryId\": \"1cc4dcb8-9990-4327-8db6-9c9f4c78e891\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"error\": null,\r\n \"errorMessage\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "443" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "da69ea62-9656-4605-b9b4-fe2d3b849f82" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "276e3ddb-4a69-4630-9642-5f2fed3d3374" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040853Z:276e3ddb-4a69-4630-9642-5f2fed3d3374" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:08:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/linkedservices/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/linkedservices/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -463,16 +403,16 @@ "175" ], "x-ms-client-request-id": [ - "00619e46-9b69-41d7-ba98-ec5ddc146ea2" + "0025bb93-9817-4622-8942-845fcedec831" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8555_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk5955_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"e53f3485-6aae-4f71-af97-a24c812e81c4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "342" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -484,16 +424,16 @@ "no-cache" ], "x-ms-request-id": [ - "2dac6b3b-8944-4f72-bd1c-34e3a88ba8f7" + "6e16e831-d5cf-4915-8018-81780db63720" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1193" ], "x-ms-correlation-request-id": [ - "19cdb6b0-c173-4df7-a1cf-4c1b0bfd3e7f" + "7d1d0daa-77b0-4a80-a17e-8f25586053c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040855Z:19cdb6b0-c173-4df7-a1cf-4c1b0bfd3e7f" + "CENTRALUS:20150829T001458Z:7d1d0daa-77b0-4a80-a17e-8f25586053c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,10 +442,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:54 GMT" + "Sat, 29 Aug 2015 00:14:57 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/linkedservices/foo2?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/linkedservices/foo2?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -517,25 +457,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/linkedservices/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/linkedservices/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvbGlua2Vkc2VydmljZXMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e79b9dd-fc1c-4015-9f33-4d2821827729" + "bf83bd35-7b09-4668-b950-78258d11447b" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk8555_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/linkedservices/foo2\",\r\n \"name\": \"foo2\",\r\n \"properties\": {\r\n \"hubName\": \"onesdk5955_hub\",\r\n \"type\": \"AzureStorage\",\r\n \"typeProperties\": {\r\n \"connectionString\": \"myfakeconnectionstring\"\r\n },\r\n \"id\": \"e53f3485-6aae-4f71-af97-a24c812e81c4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "336" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,16 +487,16 @@ "no-cache" ], "x-ms-request-id": [ - "7b86bf25-4485-456b-a835-70f679eaca6b" + "c770b815-3eb6-4d71-8e8e-f85ed4304c3f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14987" ], "x-ms-correlation-request-id": [ - "6f09c984-818b-4d12-94a4-79f477b671e6" + "0fee9561-1d52-46dd-8791-c543b1bde028" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040855Z:6f09c984-818b-4d12-94a4-79f477b671e6" + "CENTRALUS:20150829T001458Z:0fee9561-1d52-46dd-8791-c543b1bde028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +505,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:55 GMT" + "Sat, 29 Aug 2015 00:14:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -577,8 +517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"foo1\",\r\n \"properties\": {\r\n \"type\": \"CustomDataSet\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"linkedServiceName\": \"foo2\",\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -589,16 +529,16 @@ "283" ], "x-ms-client-request-id": [ - "33b9b7f6-57d3-426c-b8e0-8bfd80710406" + "6cebf277-3e15-4a4b-ae7f-1b950c6865b5" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:08:57.3471007Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"9741799b-90cf-4d93-9fbf-96b3c3b9d01b\",\r\n \"createTime\": \"2015-08-29T00:14:58.3485676Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "424" + "468" ], "Content-Type": [ "application/json; charset=utf-8" @@ -610,16 +550,16 @@ "no-cache" ], "x-ms-request-id": [ - "9451005b-8b52-4856-b085-681581e5338f" + "7252eb30-15dc-4591-9abe-cca3ee9dd376" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1192" ], "x-ms-correlation-request-id": [ - "24d4b5b9-d8db-4738-b15e-36e1ce40f5c4" + "edeada41-e1e8-41bd-bdd2-6b58dc6e65db" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040858Z:24d4b5b9-d8db-4738-b15e-36e1ce40f5c4" + "CENTRALUS:20150829T001458Z:edeada41-e1e8-41bd-bdd2-6b58dc6e65db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -628,10 +568,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:08:57 GMT" + "Sat, 29 Aug 2015 00:14:57 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -643,85 +583,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a891309f-07bf-4d2a-8cff-96e0aef61fdf" - ], - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:08:57.3471007Z\",\r\n \"provisioningState\": \"PendingCreation\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "424" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8d93491e-4168-4b6a-bc3e-ad1653f24feb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "84307b9f-f8a7-4bc3-9597-30b890e6e10e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040858Z:84307b9f-f8a7-4bc3-9597-30b890e6e10e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:08:57 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cdba86e-6eb5-4f0b-89e3-230aaea66442" + "95ea3944-f089-4d77-ac6c-be5d6fa93873" ], "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:08:56.8258278Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"9741799b-90cf-4d93-9fbf-96b3c3b9d01b\",\r\n \"createTime\": \"2015-08-29T00:14:58.2012289Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -733,16 +613,16 @@ "no-cache" ], "x-ms-request-id": [ - "a2b01c3a-3f4f-440b-9059-4939e1a6f216" + "330fc5a0-f745-4c6a-8ef0-c83085899e5f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14986" ], "x-ms-correlation-request-id": [ - "fad96dc9-d1e2-4df4-b89f-8cc7c96c92f7" + "c01c1730-335e-428e-8ba2-847539c3801e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040903Z:fad96dc9-d1e2-4df4-b89f-8cc7c96c92f7" + "CENTRALUS:20150829T001458Z:c01c1730-335e-428e-8ba2-847539c3801e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,7 +631,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:09:03 GMT" + "Sat, 29 Aug 2015 00:14:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -763,22 +643,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51e5c170-5494-4840-8a60-bf8587cdb657" + "a2dc84fb-0e6c-43be-97b4-5ddeac015afd" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"createTime\": \"2015-07-31T04:08:56.8258278Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"foo2\",\r\n \"id\": \"/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/tables/foo2\",\r\n \"properties\": {\r\n \"published\": false,\r\n \"type\": \"CustomDataset\",\r\n \"linkedServiceName\": \"foo2\",\r\n \"typeProperties\": {\r\n \"tableName\": \"myTable\"\r\n },\r\n \"availability\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"id\": \"9741799b-90cf-4d93-9fbf-96b3c3b9d01b\",\r\n \"createTime\": \"2015-08-29T00:14:58.2012289Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -790,16 +670,16 @@ "no-cache" ], "x-ms-request-id": [ - "8de5a7f3-bd16-4f9b-8d68-561f9afa57a6" + "1914b7b6-a5b6-420a-bd30-54e27b33a7bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14985" ], "x-ms-correlation-request-id": [ - "784622b1-8391-44d7-aa07-9870973795de" + "085a559c-32f4-4d7d-9f6b-48e7a5f6d611" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040904Z:784622b1-8391-44d7-aa07-9870973795de" + "CENTRALUS:20150829T001458Z:085a559c-32f4-4d7d-9f6b-48e7a5f6d611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -808,7 +688,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:09:03 GMT" + "Sat, 29 Aug 2015 00:14:57 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -820,16 +700,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvZGF0YXNldHMvZm9vMj9hcGktdmVyc2lvbj0yMDE1LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8c27061-71da-48a2-8f43-73ba3012d367" + "cbd6a740-b95d-4030-afaa-18e579ae4ad0" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -847,76 +727,16 @@ "15" ], "x-ms-request-id": [ - "a8444693-3989-4c46-b56c-f48fdd6a70ae" + "3c6569fa-1685-4b1f-8223-e69ee755544e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" - ], - "x-ms-correlation-request-id": [ - "6d5401af-fe1d-4634-9029-4e0697d55e94" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040904Z:6d5401af-fe1d-4634-9029-4e0697d55e94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 31 Jul 2015 04:09:04 GMT" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2/operationresults/52e7066369f94b949afe82cfd75062c9?api-version=2015-08-01" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2/operationresults/52e7066369f94b949afe82cfd75062c9?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy81MmU3MDY2MzY5Zjk0Yjk0OWFmZTgyY2ZkNzUwNjJjOT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-08-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-request-id": [ - "48f50236-7c66-4426-8fc7-61cde4aaa181" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "1191" ], "x-ms-correlation-request-id": [ - "27f4d165-61bc-4c2e-a947-c8c2bbda70d2" + "cc4da224-cc47-4574-b71f-72a07bddeac7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040905Z:27f4d165-61bc-4c2e-a947-c8c2bbda70d2" + "CENTRALUS:20150829T001459Z:cc4da224-cc47-4574-b71f-72a07bddeac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,10 +745,10 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:09:04 GMT" + "Sat, 29 Aug 2015 00:14:59 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2/operationresults/52e7066369f94b949afe82cfd75062c9?api-version=2015-08-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2/operationresults/3c389eba67d647268d933b62558fb0df?api-version=2015-09-01" ], "Server": [ "Microsoft-IIS/8.5" @@ -940,16 +760,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555/tables/foo2/operationresults/52e7066369f94b949afe82cfd75062c9?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTUvdGFibGVzL2ZvbzIvb3BlcmF0aW9ucmVzdWx0cy81MmU3MDY2MzY5Zjk0Yjk0OWFmZTgyY2ZkNzUwNjJjOT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955/datasets/foo2/operationresults/3c389eba67d647268d933b62558fb0df?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTUvZGF0YXNldHMvZm9vMi9vcGVyYXRpb25yZXN1bHRzLzNjMzg5ZWJhNjdkNjQ3MjY4ZDkzM2I2MjU1OGZiMGRmP2FwaS12ZXJzaW9uPTIwMTUtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2015-08-01" + "2015-09-01" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -964,16 +784,16 @@ "no-cache" ], "x-ms-request-id": [ - "11d37606-51cc-4f7e-b140-e1a493bf81dc" + "8fc947dc-2347-4e91-9c10-e9a33bcc901b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14984" ], "x-ms-correlation-request-id": [ - "6f779942-e13e-499a-8a2b-166dbc9e6c0f" + "211e7122-64b5-407e-b8e7-82bb645237ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040921Z:6f779942-e13e-499a-8a2b-166dbc9e6c0f" + "CENTRALUS:20150829T001459Z:211e7122-64b5-407e-b8e7-82bb645237ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -982,7 +802,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:09:21 GMT" + "Sat, 29 Aug 2015 00:14:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -994,16 +814,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk9350/providers/Microsoft.DataFactory/datafactories/onesdk8555?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazkzNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazg1NTU/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/4431ebb2-5a07-4d85-85cf-7af34ae85ff5/resourcegroups/onesdk1272/providers/Microsoft.DataFactory/datafactories/onesdk5955?api-version=2015-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDQzMWViYjItNWEwNy00ZDg1LTg1Y2YtN2FmMzRhZTg1ZmY1L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9kYXRhZmFjdG9yaWVzL29uZXNkazU5NTU/YXBpLXZlcnNpb249MjAxNS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80d4e001-2b31-4dbb-81ff-17f0818f8710" + "19956677-8942-4a08-9379-012de738a68b" ], "User-Agent": [ - "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/2.0.0.0" + "Microsoft.Azure.Management.DataFactories.DataFactoryManagementClient/3.0.0.0" ] }, "ResponseBody": "", @@ -1018,16 +838,16 @@ "no-cache" ], "x-ms-request-id": [ - "e810bdfa-3b2e-4aa6-98e0-ab1a533842de" + "5614a18f-9f26-40bf-9016-a59eb2977e7e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1190" ], "x-ms-correlation-request-id": [ - "4dae25fa-d510-4e43-9d9b-70ef878804ee" + "982e6930-181f-4971-a6c4-e0b785f852eb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20150731T040922Z:4dae25fa-d510-4e43-9d9b-70ef878804ee" + "CENTRALUS:20150829T001459Z:982e6930-181f-4971-a6c4-e0b785f852eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1036,7 +856,7 @@ "no-cache" ], "Date": [ - "Fri, 31 Jul 2015 04:09:22 GMT" + "Sat, 29 Aug 2015 00:14:59 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1050,8 +870,8 @@ ], "Names": { "Test-TableWithDataFactoryParameter": [ - "onesdk8555", - "onesdk9350" + "onesdk5955", + "onesdk1272" ] }, "Variables": { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config index c9c0094d6808..c4f53e48c333 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/packages.config @@ -6,8 +6,8 @@ - + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj index b67964b51311..42fdff44f884 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj @@ -61,8 +61,8 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.DataFactories.2.0.1\lib\net45\Microsoft.Azure.Management.DataFactories.dll + + ..\..\..\packages\Microsoft.Azure.Management.DataFactories.3.0.0\lib\net45\Microsoft.Azure.Management.DataFactories.dll True diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config index 6e968733a5db..80112ae06df1 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/packages.config @@ -4,8 +4,8 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/PublishAzurePlatformExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/PublishAzurePlatformExtension.cs index 98e2e3641f84..3f180f7270b2 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/PublishAzurePlatformExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/PublishAzurePlatformExtension.cs @@ -12,16 +12,16 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Linq; -using System.Management.Automation; using AutoMapper; +using Microsoft.Azure; using Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.Properties; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Microsoft.WindowsAzure.Management.Compute.Models; using Microsoft.WindowsAzure.Management.Compute; -using Microsoft.Azure; +using Microsoft.WindowsAzure.Management.Compute.Models; +using System; +using System.Linq; +using System.Management.Automation; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.ExtensionPublishing { @@ -36,9 +36,6 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageReposit public class PublishAzurePlatformExtensionCommand : ServiceManagementBaseCmdlet { protected const string AzureVMPlatformExtensionCommandNoun = "AzurePlatformExtension"; - protected const string PublicModeStr = "Public"; - protected const string InternalModeStr = "Internal"; - public bool? IsInternalExtension { get; set; } [Parameter( @@ -196,14 +193,14 @@ public class PublishAzurePlatformExtensionCommand : ServiceManagementBaseCmdlet [Parameter( Position = 21, ValueFromPipelineByPropertyName = true, - HelpMessage = "To disallow major version upgrade.")] + HelpMessage = "Supported OS of the Extension")] [ValidateNotNullOrEmpty] public string SupportedOS { get; set; } [Parameter( Mandatory = false, Position = 22, - HelpMessage = "To force the registration operation.")] + HelpMessage = "Regions of the Extension")] public string Regions { get; set; } [Parameter( @@ -212,13 +209,6 @@ public class PublishAzurePlatformExtensionCommand : ServiceManagementBaseCmdlet HelpMessage = "To force the registration operation.")] public SwitchParameter Force { get; set; } - [Parameter( - Mandatory = false, - Position = 24, - HelpMessage = "To force the registration operation.")] - [ValidateSet(PublicModeStr, InternalModeStr, IgnoreCase = true)] - public string ExtensionMode { get; set; } - protected override void OnProcessRecord() { ServiceManagementPlatformImageRepositoryProfile.Initialize(); @@ -236,7 +226,7 @@ protected override void OnProcessRecord() var upgradeCnfm = Resources.ExtensionUpgradingConfirmation; var upgradeCptn = Resources.ExtensionUpgradingCaption; - this.IsInternalExtension = ! this.ExtensionMode.Equals(PublicModeStr, StringComparison.InvariantCultureIgnoreCase); + this.IsInternalExtension = true; if (found && (this.Force.IsPresent || this.ShouldContinue(upgradeCnfm, upgradeCptn))) { diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/SetAzurePlatformExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/SetAzurePlatformExtension.cs index 8c34d7efcefb..6483e11afde3 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/SetAzurePlatformExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/ExtensionPublishing/SetAzurePlatformExtension.cs @@ -12,13 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Linq; -using System.Management.Automation; using AutoMapper; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Microsoft.WindowsAzure.Management.Compute.Models; using Microsoft.WindowsAzure.Management.Compute; +using Microsoft.WindowsAzure.Management.Compute.Models; +using System; +using System.Linq; +using System.Management.Automation; + namespace Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.ExtensionPublishing { @@ -117,6 +118,12 @@ public class SetAzurePlatformExtensionCommand : ServiceManagementBaseCmdlet [ValidateNotNullOrEmpty] public string CompanyName { get; set; } + [Parameter( + Mandatory = false, + Position = 11, + HelpMessage = "Regions of the Extension")] + public string Regions { get; set; } + public bool? BlockRoleUponFailure { get; set; } public bool? DisallowMajorVersionUpgrade { get; set; } @@ -145,19 +152,20 @@ protected override void OnProcessRecord() if (vmExtension != null) { IsJsonExtension = vmExtension.IsJsonExtension; - IsInternalExtension = vmExtension.IsJsonExtension; + IsInternalExtension = vmExtension.IsInternalExtension; DisallowMajorVersionUpgrade = vmExtension.DisallowMajorVersionUpgrade; } else if (serviceExtn != null) { IsJsonExtension = serviceExtn.IsJsonExtension; - IsInternalExtension = serviceExtn.IsJsonExtension; + IsInternalExtension = serviceExtn.IsInternalExtension; BlockRoleUponFailure = serviceExtn.BlockRoleUponFailure; } - this.IsInternalExtension = string.Equals(this.ExtensionMode, PublicModeStr) ? false - : string.Equals(this.ExtensionMode, InternalModeStr) ? true - : true; + if (! string.IsNullOrEmpty(this.ExtensionMode)) + { + this.IsInternalExtension = this.ExtensionMode.Equals(InternalModeStr); + } var parameters = Mapper.Map(this); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/PublishAzurePlatformExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/PublishAzurePlatformExtensionCmdletInfo.cs index d8892c9b256d..43dee7843ed6 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/PublishAzurePlatformExtensionCmdletInfo.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/PublishAzurePlatformExtensionCmdletInfo.cs @@ -26,7 +26,7 @@ public PublishAzurePlatformExtensionCmdletInfo( ExtensionCertificateConfig certConfig, ExtensionEndpointConfigSet epConfig, ExtensionLocalResourceConfigSet lrConfig, DateTime publishDate, string publicSchema, string privateSchema, string sample, string eula, Uri privacyUri, Uri homepage, string os, string regions, - bool blockRole, bool disallowUpgrade, bool xmlExtension, bool internalExtension, bool force) + bool blockRole, bool disallowUpgrade, bool xmlExtension, bool force) { this.cmdletName = Utilities.PublishAzurePlatformExtensionCmdletName; @@ -110,34 +110,6 @@ public PublishAzurePlatformExtensionCmdletInfo( { this.cmdletParams.Add(new CmdletParam("Force")); } - - this.cmdletParams.Add(new CmdletParam("ExtensionMode", (internalExtension)? "Internal" : "Public")); - } - - public PublishAzurePlatformExtensionCmdletInfo(string imageName, string permission, string[] locations, ComputeImageConfig compCfg, MarketplaceImageConfig marketCfg) - { - this.cmdletName = Utilities.PublishAzurePlatformExtensionCmdletName; - this.cmdletParams.Add(new CmdletParam("ImageName", imageName)); - - if (permission != null) - { - this.cmdletParams.Add(new CmdletParam("Permission", permission)); - } - - if (locations != null) - { - this.cmdletParams.Add(new CmdletParam("ReplicaLocations", locations)); - } - - if (compCfg != null) - { - this.cmdletParams.Add(new CmdletParam("PlatformComputeImageConfig", compCfg)); - } - - if (marketCfg != null) - { - this.cmdletParams.Add(new CmdletParam("PlatformMarketplaceImageConfig", marketCfg)); - } } } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/SetAzurePlatformExtensionCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/SetAzurePlatformExtensionCmdletInfo.cs index a7a42be5bfd8..3c2bed81c346 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/SetAzurePlatformExtensionCmdletInfo.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRCmdletInfo/SetAzurePlatformExtensionCmdletInfo.cs @@ -12,50 +12,60 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PowershellCore; +using System; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.PIRCmdletInfo { public class SetAzurePlatformExtensionCmdletInfo : CmdletsInfo { - public SetAzurePlatformExtensionCmdletInfo(string imageName, string permission, string [] locations) + public SetAzurePlatformExtensionCmdletInfo( + string extensionName, string publisher, string version, + string label, string description, string company, + string sample, string eula, Uri privacyUri, Uri homepage, string extensionMode, string regions) { - this.cmdletName = Utilities.SetAzurePlatformExtensionCmdletName; - this.cmdletParams.Add(new CmdletParam("ImageName", imageName)); - if (permission != null) + this.cmdletName = Utilities.PublishAzurePlatformExtensionCmdletName; + + this.cmdletParams.Add(new CmdletParam("ExtensionName", extensionName)); + this.cmdletParams.Add(new CmdletParam("Publisher", publisher)); + this.cmdletParams.Add(new CmdletParam("Version", version)); + + if (!string.IsNullOrEmpty(label)) { - this.cmdletParams.Add(new CmdletParam("Permission", permission)); + this.cmdletParams.Add(new CmdletParam("Label", label)); } - if (locations != null) + if (!string.IsNullOrEmpty(description)) { - this.cmdletParams.Add(new CmdletParam("ReplicaLocations", locations)); + this.cmdletParams.Add(new CmdletParam("Description", description)); } - } - - public SetAzurePlatformExtensionCmdletInfo(string imageName, string permission, string[] locations, ComputeImageConfig compCfg, MarketplaceImageConfig marketCfg) - { - this.cmdletName = Utilities.SetAzurePlatformExtensionCmdletName; - this.cmdletParams.Add(new CmdletParam("ImageName", imageName)); - - if (permission != null) + if (!string.IsNullOrEmpty(company)) { - this.cmdletParams.Add(new CmdletParam("Permission", permission)); + this.cmdletParams.Add(new CmdletParam("CompanyName", company)); } - - if (locations != null) + if (!string.IsNullOrEmpty(sample)) { - this.cmdletParams.Add(new CmdletParam("ReplicaLocations", locations)); + this.cmdletParams.Add(new CmdletParam("SampleConfig", sample)); } - if (compCfg != null) + if (!string.IsNullOrEmpty(eula)) { - this.cmdletParams.Add(new CmdletParam("PlatformComputeImageConfig", compCfg)); + this.cmdletParams.Add(new CmdletParam("Eula", eula)); } - - if (marketCfg != null) + if (privacyUri != null) + { + this.cmdletParams.Add(new CmdletParam("PrivacyUri", privacyUri)); + } + if (homepage != null) + { + this.cmdletParams.Add(new CmdletParam("HomepageUri", homepage)); + } + if (!string.IsNullOrEmpty(regions)) + { + this.cmdletParams.Add(new CmdletParam("Regions", regions)); + } + if (!string.IsNullOrEmpty(extensionMode)) { - this.cmdletParams.Add(new CmdletParam("PlatformMarketplaceImageConfig", marketCfg)); + this.cmdletParams.Add(new CmdletParam("ExtensionMode", regions)); } } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PlatformExtensionTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PlatformExtensionTests.cs index 7dde99416db0..23e9cad182f6 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PlatformExtensionTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PlatformExtensionTests.cs @@ -268,7 +268,7 @@ public void PublishAzurePlatformExtensionTest() certConfig, epConfig, lrConfig, publishDate, publicSchema, privateSchema, EncodeTo64(sample), eula, privacyUri, homepage, os, regions, - blockRole, disallowUpgrade, xmlExtension, internalExtension, force); + blockRole, disallowUpgrade, xmlExtension, force); } catch (Exception e) { @@ -310,7 +310,7 @@ public void PublishAzurePlatformExtensionTest() certConfig, epConfig, lrConfig, publishDate, publicSchema, privateSchema, EncodeTo64(sample), eula, privacyUri, homepage, os, regions, - blockRole, disallowUpgrade, xmlExtension, internalExtension, force); + blockRole, disallowUpgrade, xmlExtension, force); } catch (Exception e) { diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs index fac881f21ecc..bddb03530864 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs @@ -898,7 +898,7 @@ internal ManagementOperationContext PublishAzurePlatformExtension( ExtensionCertificateConfig certConfig, ExtensionEndpointConfigSet epConfig, ExtensionLocalResourceConfigSet lrConfig, DateTime publishDate, string publicSchema, string privateSchema, string sample, string eula, Uri privacyUri, Uri homepage, string os, string regions, - bool blockRole, bool disallowUpgrade, bool xmlExtension, bool internalExtension, bool force) + bool blockRole, bool disallowUpgrade, bool xmlExtension, bool force) { return RunPSCmdletAndReturnFirst( new PublishAzurePlatformExtensionCmdletInfo( @@ -907,7 +907,7 @@ internal ManagementOperationContext PublishAzurePlatformExtension( certConfig, epConfig, lrConfig, publishDate, publicSchema, privateSchema, sample, eula, privacyUri, homepage, os, regions, - blockRole, disallowUpgrade, xmlExtension, internalExtension, force)); + blockRole, disallowUpgrade, xmlExtension, force)); } internal ManagementOperationContext UnpublishAzurePlatformExtension( diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/GetAzureVMDscExtensionStatus.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/GetAzureVMDscExtensionStatus.cs index fd84f72fdb3e..6d29a3c25acb 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/GetAzureVMDscExtensionStatus.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/DSC/GetAzureVMDscExtensionStatus.cs @@ -12,18 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Hyak.Common; using Microsoft.WindowsAzure.Commands.Common.Extensions.DSC; using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; using Microsoft.WindowsAzure.Commands.ServiceManagement.Properties; -using Microsoft.WindowsAzure.Management.Compute; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Management.Automation; -using System.Net; - namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.Extensions { @@ -98,12 +94,10 @@ protected override void ExecuteCommand() { ServiceManagementProfile.Initialize(); GetService(ServiceName, VM); - GetCurrentDeployment(); + base.ExecuteCommand(); if (CurrentDeploymentNewSM == null) { - WriteWarning( - string.Format(CultureInfo.CurrentUICulture, Resources.NoDeploymentFoundInService, Service)); return; } @@ -138,32 +132,6 @@ internal void GetService(String serviceName, IPersistentVM vm) } } - /// - /// Retrieves deployment information for a cloud service from service api's - /// - internal void GetCurrentDeployment() - { - InvokeInOperationContext(() => - { - try - { - if (string.IsNullOrEmpty(Service)) - return; - - CurrentDeploymentNewSM = ComputeClient.Deployments.GetBySlot(Service, NSM.DeploymentSlot.Production); - GetDeploymentOperationNewSM = GetOperation(CurrentDeploymentNewSM.RequestId); - WriteVerboseWithTimestamp(Resources.GetDeploymentCompletedOperation); - } - catch (CloudException ex) - { - if (ex.Response.StatusCode != HttpStatusCode.NotFound) - { - throw; - } - } - }); - } - /// /// Retrieves dsc extension status for all virtual machine's in a cloud service or a given virtual machine from the deployment object /// @@ -251,7 +219,6 @@ internal VirtualMachineDscExtensionStatusContext CreateDscStatusContext(NSM.Role }; return dscStatusContext; } - } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs index a4289b86d8f7..edeb4947b8b2 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs @@ -79,7 +79,12 @@ protected virtual void ExecuteCommand() } else { - WriteWarning(string.Format(CultureInfo.CurrentUICulture, Resources.NoDeploymentFoundInService, ServiceName)); + WriteError(new ErrorRecord( + new InvalidOperationException(string.Format(CultureInfo.CurrentUICulture, + Properties.Resources.NoDeploymentFoundInService, ServiceName)), + string.Empty, + ErrorCategory.ResourceUnavailable, + null)); } } }); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/GetAzureVM.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/GetAzureVM.cs index 5a7dba645dba..915827447a9b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/GetAzureVM.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/GetAzureVM.cs @@ -91,11 +91,6 @@ protected override void ExecuteCommand() WriteObject(roleContexts, true); } - else - { - WriteWarning( - string.Format(Resources.NoDeploymentFoundInService, ServiceName)); - } } private List GetVMContextList(string serviceName, NSM.DeploymentGetResponse deployment) diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 index a9efc529ff10..7096f37fcc19 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 +++ b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/MultiVip/MultiVipTests.ps1 @@ -21,8 +21,11 @@ function Test-AdditionalVipLifecycle { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $vipName = getAssetName $serviceName = getAssetName @@ -118,8 +121,11 @@ function CreateMultivipDeployment($vmname, $vipName, $serviceName, $storageAccou #> function Test-AdditionalVipMobility { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $vipName = getAssetName $serviceName = getAssetName @@ -176,8 +182,11 @@ function Test-AdditionalVipMobility #> function Test-ReserveExistingDeploymentIPMultivip { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $vipName = getAssetName $serviceName = getAssetName @@ -217,8 +226,11 @@ function Test-ReserveExistingDeploymentIPMultivip function Test-SetLBEndpoint { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $vipName = getAssetName $serviceName = getAssetName diff --git a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 index 1d659dce5819..9f102b85cb26 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 +++ b/src/ServiceManagement/Network/Commands.Network.Test/ScenarioTests/ReservedIPs/ReservedIPTests.ps1 @@ -47,8 +47,11 @@ function Test-AzureReservedIPSimpleOperations function Test-CreateVMWithReservedIP { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $serviceName = getAssetName $storageAccountName = getAssetName @@ -98,8 +101,11 @@ function Test-CreateVMWithReservedIP function Test-ReserveExistingDeploymentIP { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $serviceName = getAssetName $storageAccountName = getAssetName @@ -139,8 +145,11 @@ function Test-ReserveExistingDeploymentIP #> function Test-SetAzureReservedIPAssociationSingleVip { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $serviceName = getAssetName $storageAccountName = getAssetName @@ -192,8 +201,11 @@ function Test-SetAzureReservedIPAssociationSingleVip function Test-RemoveAzureReservedIPAssociationSingleVip { + # Virtual Machine cmdlets are now showing a non-terminating error message for ResourceNotFound + # To continue script, $ErrorActionPreference should be set to 'SilentlyContinue'. + $ErrorActionPreference='SilentlyContinue'; + # Setup - $vmname = getAssetName $serviceName = getAssetName $storageAccountName = getAssetName From 79b2ece7ce8f015d8745fa1dc6b8254428bf44f6 Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Mon, 31 Aug 2015 11:00:55 -0700 Subject: [PATCH 20/58] Updates to changelog - Added SQLVM cmdlets for ARM --- ChangeLog.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index 2112b01a525b..b14abdefae8d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -27,6 +27,12 @@ * Set-AzureRMBackupProtectionPolicy * Get-AzureRMBackupRecoveryPoint * Restore-AzureRMBackupItem + * SQL Server VM cmdlets (ARM) + * New-AzureVMSqlServerAutoPatchingConfig + * New-AzureVMSqlServerAutoBackupConfig + * Set-AzureVMSqlServerExtension + * Get-AzureVMSqlServerExtension + * Remove-AzureVMSqlServerExtension ## 2015.08.17 version 0.9.7 * Azure Profile cmdlets From 216c8dfbe640853521c25c6a6084f5c06423a8b7 Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Mon, 31 Aug 2015 17:09:15 -0700 Subject: [PATCH 21/58] - Attributed StorageUrl,StorageAccessKey, Password so that it is ignored in JSON serializer - no special handling is needed in Get-AzureVMSqlServerExtension to mask secrets --- .../AzureVMSqlServerAutoBackupSettings.cs | 4 ++ .../GetAzureVMSqlServerExtensionCommand.cs | 52 +++++++------------ 2 files changed, 22 insertions(+), 34 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs index cbda50e7daeb..8ee4fc21c38d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/AzureVMSqlServerAutoBackupSettings.cs @@ -11,6 +11,7 @@ // See the License for the specific language governing permissions and // limitations under the License. // ---------------------------------------------------------------------------------- +using Newtonsoft.Json; namespace Microsoft.Azure.Commands.Compute { @@ -37,16 +38,19 @@ public class AutoBackupSettings /// /// storage url where databases will be backed up /// + [JsonIgnoreAttribute()] public string StorageUrl { get; set; } /// /// Key of storage account used by managed backup /// + [JsonIgnoreAttribute()] public string StorageAccessKey { get; set; } /// /// Password required for certification when encryption is enabled /// + [JsonIgnoreAttribute()] public string Password { get; set; } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs index 601ffd40f177..65cee4e8f52f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs @@ -32,8 +32,6 @@ public class GetAzureVMSqlServerExtensionCommand : VirtualMachineExtensionBaseCm { protected const string GetSqlServerExtensionParamSetName = "GetSqlServerExtension"; - private const string SecretMaskedString = "*****"; - [Parameter( Mandatory = true, Position = 0, @@ -119,20 +117,30 @@ public override void ExecuteCmdlet() private VirtualMachineSqlServerExtensionContext GetSqlServerExtensionContext(PSVirtualMachineExtension extension) { SqlServerPublicSettings extensionPublicSettings = null; + VirtualMachineSqlServerExtensionContext context = null; + try { extensionPublicSettings = string.IsNullOrEmpty(extension.PublicSettings) ? null : JsonConvert.DeserializeObject(extension.PublicSettings); - if (null != extensionPublicSettings) + // #$ISSUE- extension.Statuses is always null, follow up with Azure team + context = new VirtualMachineSqlServerExtensionContext { - if (null != extensionPublicSettings.AutoBackupSettings) - { - // Mask secrets so that they are not printed on console - extensionPublicSettings.AutoBackupSettings.Password = SecretMaskedString; - extensionPublicSettings.AutoBackupSettings.StorageAccessKey = SecretMaskedString; - } - } + ResourceGroupName = extension.ResourceGroupName, + Name = extension.Name, + Location = extension.Location, + Etag = extension.Etag, + Publisher = extension.Publisher, + ExtensionType = extension.ExtensionType, + TypeHandlerVersion = extension.TypeHandlerVersion, + Id = extension.Id, + PublicSettings = JsonConvert.SerializeObject(extensionPublicSettings), + ProtectedSettings = extension.ProtectedSettings, + ProvisioningState = extension.ProvisioningState, + Statuses = extension.Statuses + }; + } catch (JsonException e) { @@ -149,30 +157,6 @@ private VirtualMachineSqlServerExtensionContext GetSqlServerExtensionContext(PSV null)); } - string publicSettingsAsString = String.Empty; - if (null != extensionPublicSettings) - { - publicSettingsAsString = JsonConvert.SerializeObject(extensionPublicSettings); - } - - // #$ISSUE- extension.Statuses is always null, follow up with Azure team - var context = new VirtualMachineSqlServerExtensionContext - { - ResourceGroupName = extension.ResourceGroupName, - Name = extension.Name, - Location = extension.Location, - Etag = extension.Etag, - Publisher = extension.Publisher, - ExtensionType = extension.ExtensionType, - TypeHandlerVersion = extension.TypeHandlerVersion, - Id = extension.Id, - PublicSettings = JsonConvert.SerializeObject(extensionPublicSettings), - ProtectedSettings = extension.ProtectedSettings, - ProvisioningState = extension.ProvisioningState, - Statuses = extension.Statuses - }; - - return context; } } From 4e7a2062267d41215580d0c691f5dfd3e7743cfb Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Mon, 31 Aug 2015 19:11:50 -0700 Subject: [PATCH 22/58] azurecmdfiles.wxi was incorrectly merged. no new files added in SQLVM cmdlets. - Replacing this file with recent version from https://github.com/Azure/azure-powershell/blob/dev/setup/azurecmdfiles.wxi --- setup/azurecmdfiles.wxi | 144 +++++++++++++++++++++++++++++++--------- 1 file changed, 112 insertions(+), 32 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index fe246f1159bb..844c5a05065e 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -240,9 +240,6 @@ - - - @@ -581,6 +578,15 @@ + + + + + + + + + @@ -626,6 +632,9 @@ + + + @@ -805,12 +814,6 @@ - - - - - - @@ -1196,6 +1199,15 @@ + + + + + + + + + @@ -1232,6 +1244,9 @@ + + + @@ -1335,6 +1350,15 @@ + + + + + + + + + @@ -1362,6 +1386,9 @@ + + + @@ -1430,6 +1457,15 @@ + + + + + + + + + @@ -1478,6 +1514,9 @@ + + + @@ -2885,9 +2924,6 @@ - - - @@ -3111,6 +3147,15 @@ + + + + + + + + + @@ -3180,6 +3225,9 @@ + + + @@ -3233,6 +3281,15 @@ + + + + + + + + + @@ -3257,9 +3314,6 @@ - - - @@ -3353,6 +3407,9 @@ + + + @@ -3406,9 +3463,6 @@ - - - @@ -3981,9 +4035,6 @@ - - - @@ -4382,9 +4433,6 @@ - - - @@ -4700,6 +4748,15 @@ + + + + + + + + + @@ -4751,6 +4808,9 @@ + + + @@ -4835,7 +4895,6 @@ - @@ -4938,6 +4997,9 @@ + + + @@ -4953,6 +5015,7 @@ + @@ -5012,8 +5075,6 @@ - - @@ -5131,6 +5192,9 @@ + + + @@ -5143,6 +5207,7 @@ + @@ -5176,6 +5241,9 @@ + + + @@ -5185,6 +5253,7 @@ + @@ -5207,6 +5276,9 @@ + + + @@ -5223,6 +5295,7 @@ + @@ -5680,7 +5753,6 @@ - @@ -5754,6 +5826,9 @@ + + + @@ -5777,6 +5852,7 @@ + @@ -5794,6 +5870,9 @@ + + + @@ -5802,7 +5881,6 @@ - @@ -5834,6 +5912,7 @@ + @@ -5851,7 +5930,6 @@ - @@ -6030,7 +6108,6 @@ - @@ -6153,7 +6230,6 @@ - @@ -6257,6 +6333,9 @@ + + + @@ -6274,6 +6353,7 @@ + From cfe266e7f7501809253ff4c39d5ff6b8b2c19c0b Mon Sep 17 00:00:00 2001 From: Sethu Srinivasan Date: Tue, 1 Sep 2015 05:39:29 -0700 Subject: [PATCH 23/58] - removed Status parameter, we always need extension status retrieved back to read AutoBackup and AutoPatching settings --- .../GetAzureVMSqlServerExtensionCommand.cs | 53 +++++-------------- 1 file changed, 12 insertions(+), 41 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs index 65cee4e8f52f..e7433aeb6558 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs @@ -57,13 +57,6 @@ public class GetAzureVMSqlServerExtensionCommand : VirtualMachineExtensionBaseCm [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter( - Position = 3, - ValueFromPipelineByPropertyName = true, - HelpMessage = "To show the status.")] - [ValidateNotNullOrEmpty] - public SwitchParameter Status { get; set; } - public override void ExecuteCmdlet() { base.ExecuteCmdlet(); @@ -73,45 +66,21 @@ public override void ExecuteCmdlet() Name = VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace + "." + VirtualMachineSqlServerExtensionContext.ExtensionPublishedName; } - if (Status) - { - var result = VirtualMachineExtensionClient.GetWithInstanceView(ResourceGroupName, VMName, Name); - var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); + var result = VirtualMachineExtensionClient.GetWithInstanceView(ResourceGroupName, VMName, Name); + var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); - if ( - extension.Publisher.Equals(VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace, - StringComparison.InvariantCultureIgnoreCase) && - extension.ExtensionType.Equals(VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, - StringComparison.InvariantCultureIgnoreCase)) - { - WriteObject(GetSqlServerExtensionContext(extension)); - } - else - { - WriteObject(null); - } + if ( + extension.Publisher.Equals(VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace, + StringComparison.InvariantCultureIgnoreCase) && + extension.ExtensionType.Equals(VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, + StringComparison.InvariantCultureIgnoreCase)) + { + WriteObject(GetSqlServerExtensionContext(extension)); } else { - var result = VirtualMachineExtensionClient.Get(ResourceGroupName, VMName, Name); - var extension = result.ToPSVirtualMachineExtension(ResourceGroupName); - - if ( - extension.Publisher.Equals( - VirtualMachineSqlServerExtensionContext.ExtensionPublishedNamespace, - StringComparison.InvariantCultureIgnoreCase) && - extension.ExtensionType.Equals( - VirtualMachineSqlServerExtensionContext.ExtensionPublishedName, - StringComparison.InvariantCultureIgnoreCase)) - { - WriteObject(GetSqlServerExtensionContext(extension)); - } - else - { - WriteObject(null); - } + WriteObject(null); } - } private VirtualMachineSqlServerExtensionContext GetSqlServerExtensionContext(PSVirtualMachineExtension extension) @@ -138,6 +107,8 @@ private VirtualMachineSqlServerExtensionContext GetSqlServerExtensionContext(PSV PublicSettings = JsonConvert.SerializeObject(extensionPublicSettings), ProtectedSettings = extension.ProtectedSettings, ProvisioningState = extension.ProvisioningState, + AutoBackupSettings = extensionPublicSettings.AutoBackupSettings, + AutoPatchingSettings = extensionPublicSettings.AutoPatchingSettings, Statuses = extension.Statuses }; From 2b4e517f426cfe102cfc8288d12c96228acd9af1 Mon Sep 17 00:00:00 2001 From: jasper-schneider Date: Tue, 1 Sep 2015 10:04:20 -0700 Subject: [PATCH 24/58] Move RequestInterceptor creation into helper method Currently the Batch cmdlet unit tests all define their RequestInterceptors inline, leading to lots of duplicated code that is mostly just test setup. With this change, the RequestInterceptor generation is moved to a helper method, cleaning up the tests. --- .../Commands.Batch.Test/BatchTestHelpers.cs | 63 ++++++++ .../NewBatchComputeNodeUserCommandTests.cs | 15 +- .../RemoveBatchComputeNodeUserCommandTests.cs | 16 +- .../GetBatchComputeNodeCommandTests.cs | 57 +------ .../ResetBatchComputeNodeCommandTests.cs | 16 +- .../RestartBatchComputeNodeCommandTests.cs | 16 +- .../Files/GetBatchNodeFileCommandTests.cs | 142 +++--------------- .../GetBatchNodeFileContentCommandTests.cs | 63 +------- ...chRemoteDesktopProtocolFileCommandTests.cs | 17 +-- .../DisableBatchJobScheduleCommandTests.cs | 18 +-- .../EnableBatchJobScheduleCommandTests.cs | 17 +-- .../GetBatchJobScheduleCommandTests.cs | 57 +------ .../NewBatchJobScheduleCommandTests.cs | 15 +- .../RemoveBatchJobScheduleCommandTests.cs | 14 +- .../StopBatchJobScheduleCommandTests.cs | 18 +-- .../Jobs/DisableBatchJobCommandTests.cs | 18 +-- .../Jobs/EnableBatchJobCommandTests.cs | 18 +-- .../Jobs/GetBatchJobCommandTests.cs | 57 +------ .../Jobs/NewBatchJobCommandTests.cs | 15 +- .../Jobs/RemoveBatchJobCommandTests.cs | 14 +- .../Jobs/StopBatchJobCommandTests.cs | 19 +-- .../DisableBatchAutoScaleCommandTests.cs | 16 +- .../Pools/EnableBatchAutoScaleCommandTests.cs | 16 +- .../Pools/GetBatchPoolCommandTests.cs | 57 +------ .../Pools/NewBatchPoolCommandTests.cs | 15 +- .../Pools/RemoveBatchPoolCommandTests.cs | 14 +- .../SetBatchPoolOSVersionCommandTests.cs | 20 +-- .../Pools/StartBatchPoolResizeCommandTests.cs | 16 +- .../Pools/StopBatchPoolResizeCommandTests.cs | 15 +- .../Pools/TestBatchAutoScaleCommandTests.cs | 16 +- .../Tasks/GetBatchTaskCommandTests.cs | 70 ++------- .../Tasks/NewBatchTaskCommandTests.cs | 15 +- .../Tasks/RemoveBatchTaskCommandTests.cs | 14 +- .../Tasks/StopBatchTaskCommandTests.cs | 14 +- 34 files changed, 168 insertions(+), 815 deletions(-) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs index 6a6eb70b1b9d..04cb1666a2ac 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs @@ -111,6 +111,69 @@ public static void AssertBatchAccountContextsAreEqual(BatchAccountContext contex Assert.Equal(context1.TaskTenantUrl, context2.TaskTenantUrl); } + /// + /// Creates a RequestInterceptor that does not contact the Batch Service but instead uses the supplied response body. + /// + /// The response the interceptor should return. If none is specified, then a new instance of the response type is instantiated. + /// The type of the request parameters. + /// The type of the expected response. + public static RequestInterceptor CreateNoOpInterceptor(TResponse responseToUse = null) + where TParameters : ProxyModels.BatchParameters + where TResponse : ProxyModels.BatchOperationResponse, new() + { + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest request = + (BatchRequest)baseRequest; + + request.ServiceRequestFunc = (cancellationToken) => + { + TResponse response = responseToUse ?? new TResponse(); + Task task = Task.FromResult(response); + return task; + }; + }); + return interceptor; + } + + /// + /// Creates a RequestInterceptor that does not contact the Batch Service on a Get NodeFile or a Get NodeFile Properties call. + /// The interceptor must handle both request types since it's possible for one OM node file method to perform both REST APIs. + /// + /// The name of the file to put in the response body. + public static RequestInterceptor CreateNoOpGetFileAndPropertiesInterceptor(string fileName) + { + RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => + { + BatchRequest fileRequest = baseRequest as + BatchRequest; + + if (fileRequest != null) + { + fileRequest.ServiceRequestFunc = (cancellationToken) => + { + ProxyModels.NodeFileGetResponse response = new ProxyModels.NodeFileGetResponse(); + Task task = Task.FromResult(response); + return task; + }; + } + else + { + BatchRequest propRequest = + (BatchRequest)baseRequest; + + propRequest.ServiceRequestFunc = (cancellationToken) => + { + ProxyModels.NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(fileName); + Task task = Task.FromResult(response); + return task; + }; + } + }); + + return interceptor; + } + /// /// Builds a CloudPoolGetResponse object /// diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs index abc958d33cd1..a0ee6f3bbda5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs @@ -16,12 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -64,18 +62,7 @@ public void NewBatchComputeNodeUserParametersTest() cmdlet.Password = "Password1234"; // Don't go to the service on an Add ComputeNodeUser call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeAddUserResponse response = new ComputeNodeAddUserResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs index 1dcc66234ee6..dcec77175f6e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs @@ -20,7 +20,6 @@ using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -61,19 +60,8 @@ public void RemoveBatchComputeNodeUserParametersTest() cmdlet.ComputeNodeId = "computeNode1"; cmdlet.Name = "testUser"; - // Don't go to the service on a DeleteTVMUser call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeDeleteUserResponse response = new ComputeNodeDeleteUserResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + // Don't go to the service on a Delete ComputeNodeUser call + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs index 447f954f423e..309a1f8a015e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs @@ -21,7 +21,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -56,18 +55,8 @@ public void GetBatchComputeNodeTest() cmdlet.Filter = null; // Build a compute node instead of querying the service on a Get ComputeNode call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeGetResponse response = BatchTestHelpers.CreateComputeNodeGetResponse(cmdlet.Id); - Task task = Task.FromResult(response); - return task; - }; - }); + ComputeNodeGetResponse response = BatchTestHelpers.CreateComputeNodeGetResponse(cmdlet.Id); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -95,18 +84,8 @@ public void ListBatchComputeNodesByODataFilterTest() string[] idsOfConstructedComputeNodes = new[] { "computeNode1", "computeNode2" }; // Build some compute nodes instead of querying the service on a List ComputeNodes call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeListResponse response = BatchTestHelpers.CreateComputeNodeListResponse(idsOfConstructedComputeNodes); - Task task = Task.FromResult(response); - return task; - }; - }); + ComputeNodeListResponse response = BatchTestHelpers.CreateComputeNodeListResponse(idsOfConstructedComputeNodes); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -142,18 +121,8 @@ public void ListBatchComputeNodesWithoutFiltersTest() string[] idsOfConstructedComputeNodes = new[] { "computeNode1", "computeNode2", "computeNode3" }; // Build some compute nodes instead of querying the service on a List ComputeNodes call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeListResponse response = BatchTestHelpers.CreateComputeNodeListResponse(idsOfConstructedComputeNodes); - Task task = Task.FromResult(response); - return task; - }; - }); + ComputeNodeListResponse response = BatchTestHelpers.CreateComputeNodeListResponse(idsOfConstructedComputeNodes); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -194,18 +163,8 @@ public void ListComputeNodesMaxCountTest() string[] idsOfConstructedComputeNodes = new[] { "computeNode1", "computeNode2", "computeNode3" }; // Build some compute nodes instead of querying the service on a List ComputeNodes call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeListResponse response = BatchTestHelpers.CreateComputeNodeListResponse(idsOfConstructedComputeNodes); - Task task = Task.FromResult(response); - return task; - }; - }); + ComputeNodeListResponse response = BatchTestHelpers.CreateComputeNodeListResponse(idsOfConstructedComputeNodes); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs index 7d17d9891e8e..b8b72d4c02a3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs @@ -17,11 +17,9 @@ using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; @@ -63,18 +61,7 @@ public void ResetBatchComputeNodeParametersTest() cmdlet.Id = "computeNode1"; // Don't go to the service on a Reimage ComputeNode call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeReimageResponse response = new ComputeNodeReimageResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -102,6 +89,7 @@ public void ResetComputeNodeRequestTest() request.ServiceRequestFunc = (cancellationToken) => { + // Grab the reimage option from the outgoing request. requestReimageOption = request.TypedParameters.ComputeNodeReimageOption; ComputeNodeReimageResponse response = new ComputeNodeReimageResponse(); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs index 76a184a3588c..124bd3fd1ea9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs @@ -17,11 +17,9 @@ using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; @@ -63,18 +61,7 @@ public void RestartBatchComputeNodeParametersTest() cmdlet.Id = "computeNode1"; // Don't go to the service on a Reboot ComputeNode call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeRebootResponse response = new ComputeNodeRebootResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -102,6 +89,7 @@ public void RestartComputeNodeRequestTest() request.ServiceRequestFunc = (cancellationToken) => { + // Grab the reboot option from the outgoing request. requestRebootOption = request.TypedParameters.ComputeNodeRebootOption; ComputeNodeRebootResponse response = new ComputeNodeRebootResponse(); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs index ac8925106065..9407d21814b5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs @@ -14,7 +14,6 @@ using System; using Microsoft.Azure.Batch; -using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; using Microsoft.Azure.Commands.Batch.Models; @@ -23,7 +22,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -60,18 +58,8 @@ public void GetBatchNodeFileByTaskParametersTest() cmdlet.Filter = null; // Build a NodeFile instead of querying the service on a List NodeFile call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(new string[] {cmdlet.Name}); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(new string[] {cmdlet.Name}); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; Assert.Throws(() => cmdlet.ExecuteCmdlet()); @@ -103,18 +91,8 @@ public void GetBatchNodeFileByTaskTest() cmdlet.Filter = null; // Build a NodeFile instead of querying the service on a Get NodeFile Properties call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(cmdlet.Name); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(cmdlet.Name); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -143,18 +121,8 @@ public void ListBatchNodeFilesByTaskByODataFilterTest() string[] namesOfConstructedNodeFiles = new[] { "stdout.txt", "stderr.txt" }; // Build some NodeFiles instead of querying the service on a List NodeFiles call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -191,18 +159,8 @@ public void ListBatchNodeFilesByTaskWithoutFiltersTest() string[] namesOfConstructedNodeFiles = new[] { "stdout.txt", "stderr.txt", "wd" }; // Build some NodeFiles instead of querying the service on a List NodeFiles call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -244,18 +202,8 @@ public void ListNodeFilesByTaskMaxCountTest() string[] namesOfConstructedNodeFiles = new[] { "stdout.txt", "stderr.txt", "wd" }; // Build some NodeFiles instead of querying the service on a List NodeFiles call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -291,18 +239,8 @@ public void GetBatchNodeFileByComputeNodeParametersTest() cmdlet.Filter = null; // Build a NodeFile instead of querying the service on a List NodeFile call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(new string[] {cmdlet.Name}); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(new string[] {cmdlet.Name}); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; Assert.Throws(() => cmdlet.ExecuteCmdlet()); @@ -327,18 +265,8 @@ public void GetBatchNodeFileByComputeNodeTest() cmdlet.Filter = null; // Build a NodeFile instead of querying the service on a Get NodeFile Properties call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(cmdlet.Name); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(cmdlet.Name); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -367,18 +295,8 @@ public void ListBatchNodeFilesByComputeNodeByODataFilterTest() string[] namesOfConstructedNodeFiles = new[] { "startup\\stdout.txt", "startup\\stderr.txt" }; // Build some NodeFiles instead of querying the service on a List NodeFiles call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -415,18 +333,8 @@ public void ListBatchNodeFilesByComputeNodeWithoutFiltersTest() string[] namesOfConstructedNodeFiles = new[] { "startup", "workitems", "shared" }; // Build some NodeFiles instead of querying the service on a List NodeFiles call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -468,18 +376,8 @@ public void ListNodeFilesByComputeNodeMaxCountTest() string[] namesOfConstructedNodeFiles = new[] { "startup", "workitems", "shared" }; // Build some NodeFiles instead of querying the service on a List NodeFiles call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); - Task task = Task.FromResult(response); - return task; - }; - }); + NodeFileListResponse response = BatchTestHelpers.CreateNodeFileListResponse(namesOfConstructedNodeFiles); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs index 50f025b90b31..1547433166f2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs @@ -15,16 +15,11 @@ using System; using System.IO; using Microsoft.Azure.Batch; -using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; -using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -63,34 +58,7 @@ public void GetBatchNodeFileByTaskParametersTest() string fileName = "stdout.txt"; // Don't go to the service on a Get NodeFile call or Get NodeFile Properties call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest fileRequest = baseRequest as - BatchRequest; - - if (fileRequest != null) - { - fileRequest.ServiceRequestFunc = (cancellationToken) => - { - NodeFileGetResponse response = new NodeFileGetResponse(); - Task task = Task.FromResult(response); - return task; - }; - } - else - { - BatchRequest propRequest = - (BatchRequest)baseRequest; - - propRequest.ServiceRequestFunc = (cancellationToken) => - { - NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(cmdlet.Name); - Task task = Task.FromResult(response); - return task; - }; - } - }); - + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpGetFileAndPropertiesInterceptor(cmdlet.Name); cmdlet.AdditionalBehaviors = new List() { interceptor }; using (MemoryStream memStream = new MemoryStream()) @@ -126,34 +94,7 @@ public void GetBatchNodeFileByComputeNodeContentParametersTest() string fileName = "startup\\stdout.txt"; // Don't go to the service on a Get NodeFile call or Get NodeFile Properties call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest fileRequest = baseRequest as - BatchRequest; - - if (fileRequest != null) - { - fileRequest.ServiceRequestFunc = (cancellationToken) => - { - NodeFileGetResponse response = new NodeFileGetResponse(); - Task task = Task.FromResult(response); - return task; - }; - } - else - { - BatchRequest propRequest = - (BatchRequest)baseRequest; - - propRequest.ServiceRequestFunc = (cancellationToken) => - { - NodeFileGetPropertiesResponse response = BatchTestHelpers.CreateNodeFileGetPropertiesResponse(cmdlet.Name); - Task task = Task.FromResult(response); - return task; - }; - } - }); - + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpGetFileAndPropertiesInterceptor(cmdlet.Name); cmdlet.AdditionalBehaviors = new List() { interceptor }; using (MemoryStream memStream = new MemoryStream()) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs index 465dab352e56..7b18457f9a21 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs @@ -15,16 +15,12 @@ using System; using System.IO; using Microsoft.Azure.Batch; -using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -60,18 +56,7 @@ public void GetBatchRemoteDesktopProtocolFileParametersTest() cmdlet.DestinationPath = null; // Don't go to the service on a Get ComputeNode Remote Desktop call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - ComputeNodeGetRemoteDesktopResponse response = new ComputeNodeGetRemoteDesktopResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; using (MemoryStream memStream = new MemoryStream()) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs index 88fac985d10a..d059748ad9b1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs @@ -16,17 +16,14 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; -namespace Microsoft.Azure.Commands.Batch.Test.Pools +namespace Microsoft.Azure.Commands.Batch.Test.JobSchedules { public class DisableBatchJobScheduleCommandTests { @@ -58,18 +55,7 @@ public void DisableJobScheduleParametersTest() cmdlet.Id = "testJobSchedule"; // Don't go to the service on a Disable CloudJobSchedule call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleDisableResponse response = new CloudJobScheduleDisableResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs index f55c3ca3f056..9b5bb09698ac 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs @@ -16,17 +16,15 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; -namespace Microsoft.Azure.Commands.Batch.Test.Pools +namespace Microsoft.Azure.Commands.Batch.Test.JobSchedules { public class EnableBatchJobScheduleCommandTests { @@ -58,18 +56,7 @@ public void EnableJobScheduleParametersTest() cmdlet.Id = "testJobSchedule"; // Don't go to the service on an Enable CloudJobSchedule call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleEnableResponse response = new CloudJobScheduleEnableResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs index e43ce0b8b3d5..8e7d0477ffe8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs @@ -21,7 +21,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -55,18 +54,8 @@ public void GetBatchJobScheduleTest() cmdlet.Filter = null; // Build a CloudJobSchedule instead of querying the service on a Get CloudJobSchedule call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleGetResponse response = BatchTestHelpers.CreateCloudJobScheduleGetResponse(cmdlet.Id); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobScheduleGetResponse response = BatchTestHelpers.CreateCloudJobScheduleGetResponse(cmdlet.Id); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -93,18 +82,8 @@ public void ListBatchJobScheduleByODataFilterTest() string[] idsOfConstructedJobSchedules = new[] { "test1", "test2" }; // Build some CloudJobSchedules instead of querying the service on a List CloudJobSchedules call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleListResponse response = BatchTestHelpers.CreateCloudJobScheduleListResponse(idsOfConstructedJobSchedules); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobScheduleListResponse response = BatchTestHelpers.CreateCloudJobScheduleListResponse(idsOfConstructedJobSchedules); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -139,18 +118,8 @@ public void ListBatchJobSchedulesWithoutFiltersTest() string[] idsOfConstructedJobSchedules = new[] { "id1", "id2", "id3" }; // Build some CloudJobSchedules instead of querying the service on a List CloudJobSchedules call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleListResponse response = BatchTestHelpers.CreateCloudJobScheduleListResponse(idsOfConstructedJobSchedules); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobScheduleListResponse response = BatchTestHelpers.CreateCloudJobScheduleListResponse(idsOfConstructedJobSchedules); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -190,18 +159,8 @@ public void ListJobSchedulesMaxCountTest() string[] idsOfConstructedJobSchedules = new[] { "id1", "id2", "id3" }; // Build some CloudJobSchedules instead of querying the service on a List CloudJobSchedules call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleListResponse response = BatchTestHelpers.CreateCloudJobScheduleListResponse(idsOfConstructedJobSchedules); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobScheduleListResponse response = BatchTestHelpers.CreateCloudJobScheduleListResponse(idsOfConstructedJobSchedules); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs index 013103c8e7d0..2d1206fe6656 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs @@ -16,12 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -57,18 +55,7 @@ public void NewBatchJobScheduleParametersTest() cmdlet.Id = "testJobSchedule"; // Don't go to the service on an Add CloudJobSchedule call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleAddResponse response = new CloudJobScheduleAddResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs index c758acfbddfe..a2577a1f9184 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs @@ -20,7 +20,6 @@ using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -60,18 +59,7 @@ public void RemoveBatchJobScheduleParametersTest() cmdlet.Id = "testJobSchedule"; // Don't go to the service on a Delete CloudJobSchedule call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleDeleteResponse response = new CloudJobScheduleDeleteResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs index d9c4fbb806cb..58922ca34a39 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/StopBatchJobScheduleCommandTests.cs @@ -16,17 +16,14 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; -namespace Microsoft.Azure.Commands.Batch.Test.Pools +namespace Microsoft.Azure.Commands.Batch.Test.JobSchedules { public class StopBatchJobScheduleCommandTests { @@ -58,18 +55,7 @@ public void StopJobScheduleParametersTest() cmdlet.Id = "testJobSchedule"; // Don't go to the service on a Terminate CloudJobSchedule call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobScheduleTerminateResponse response = new CloudJobScheduleTerminateResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs index 963b508c228e..4880ee609c90 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs @@ -17,17 +17,15 @@ using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; -namespace Microsoft.Azure.Commands.Batch.Test.Pools +namespace Microsoft.Azure.Commands.Batch.Test.Jobs { public class DisableBatchJobCommandTests { @@ -60,18 +58,7 @@ public void DisableJobParametersTest() cmdlet.DisableJobOption = DisableJobOption.Terminate; // Don't go to the service on a Disable CloudJob call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobDisableResponse response = new CloudJobDisableResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -97,6 +84,7 @@ public void DisableJobRequestTest() BatchRequest request = (BatchRequest)baseRequest; + // Grab the disable option off the outgoing request. requestDisableOption = request.TypedParameters.DisableJobOption; request.ServiceRequestFunc = (cancellationToken) => diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs index be930f5f878b..b6b4ae612cdc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs @@ -16,17 +16,14 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; -namespace Microsoft.Azure.Commands.Batch.Test.Pools +namespace Microsoft.Azure.Commands.Batch.Test.Jobs { public class EnableBatchJobCommandTests { @@ -58,18 +55,7 @@ public void EnableJobParametersTest() cmdlet.Id = "testJob"; // Don't go to the service on an Enable CloudJob call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobEnableResponse response = new CloudJobEnableResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs index 595ede5cda55..eb1f6d82682b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs @@ -21,7 +21,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -55,18 +54,8 @@ public void GetBatchJobTest() cmdlet.Filter = null; // Build a CloudJob instead of querying the service on a Get CloudJob call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobGetResponse response = BatchTestHelpers.CreateCloudJobGetResponse(cmdlet.Id); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobGetResponse response = BatchTestHelpers.CreateCloudJobGetResponse(cmdlet.Id); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -94,18 +83,8 @@ public void ListBatchJobsByODataFilterTest() string[] idsOfConstructedJobs = new[] { "job-1", "job-2" }; // Build some CloudJobs instead of querying the service on a List CloudJobs call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobListResponse response = BatchTestHelpers.CreateCloudJobListResponse(idsOfConstructedJobs); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobListResponse response = BatchTestHelpers.CreateCloudJobListResponse(idsOfConstructedJobs); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -141,18 +120,8 @@ public void ListBatchJobsWithoutFiltersTest() string[] idsOfConstructedJobs = new[] { "job-1", "job-2", "job-3" }; // Build some CloudJobs instead of querying the service on a List CloudJobs call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobListResponse response = BatchTestHelpers.CreateCloudJobListResponse(idsOfConstructedJobs); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobListResponse response = BatchTestHelpers.CreateCloudJobListResponse(idsOfConstructedJobs); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -193,18 +162,8 @@ public void ListJobsMaxCountTest() string[] idsOfConstructedJobs = new[] { "job-1", "job-2", "job-3" }; // Build some CloudJobs instead of querying the service on a List CloudJobs call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobListResponse response = BatchTestHelpers.CreateCloudJobListResponse(idsOfConstructedJobs); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudJobListResponse response = BatchTestHelpers.CreateCloudJobListResponse(idsOfConstructedJobs); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs index c9cf123ac5f1..cf9798793640 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs @@ -16,12 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -57,18 +55,7 @@ public void NewBatchJobParametersTest() cmdlet.Id = "testJob"; // Don't go to the service on an Add CloudJob call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobAddResponse response = new CloudJobAddResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs index b28657892c8d..d2bf4f2db9f2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs @@ -20,7 +20,6 @@ using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -60,18 +59,7 @@ public void RemoveBatchJobParametersTest() cmdlet.Id = "job-1"; // Don't go to the service on a Delete CloudJob call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobDeleteResponse response = new CloudJobDeleteResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs index 1bf3bae3e512..90f57972cccb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/StopBatchJobCommandTests.cs @@ -14,20 +14,17 @@ using System; using Microsoft.Azure.Batch; -using Microsoft.Azure.Batch.Common; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; -namespace Microsoft.Azure.Commands.Batch.Test.Pools +namespace Microsoft.Azure.Commands.Batch.Test.Jobs { public class StopBatchJobCommandTests { @@ -59,18 +56,7 @@ public void StopJobParametersTest() cmdlet.Id = "testJob"; // Don't go to the service on a Terminate CloudJob call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudJobTerminateResponse response = new CloudJobTerminateResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -96,6 +82,7 @@ public void StopJobRequestTest() BatchRequest request = (BatchRequest)baseRequest; + // Grab the terminate reason off the outgoing request requestTerminateReason = request.TypedParameters.TerminateReason; request.ServiceRequestFunc = (cancellationToken) => diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs index 54663a08cda4..193ef720bc2f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs @@ -16,13 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -58,18 +55,7 @@ public void DisableAutoScaleParametersTest() cmdlet.Id = "testPool"; // Don't go to the service on an Disable AutoScale call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolDisableAutoScaleResponse response = new CloudPoolDisableAutoScaleResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs index 68ee2e11da26..9f3527918bf3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs @@ -16,11 +16,9 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; @@ -62,18 +60,7 @@ public void EnableAutoScaleParametersTest() cmdlet.AutoScaleFormula = "formula"; // Don't go to the service on an Enable AutoScale call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolEnableAutoScaleResponse response = new CloudPoolEnableAutoScaleResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -99,6 +86,7 @@ public void EnableAutoScaleRequestTest() BatchRequest request = (BatchRequest)baseRequest; + // Grab the formula off the outgoing request requestFormula = request.TypedParameters.AutoScaleFormula; request.ServiceRequestFunc = (cancellationToken) => diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs index e5a1660a41af..5266e113a0df 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs @@ -21,7 +21,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -55,18 +54,8 @@ public void GetBatchPoolTest() cmdlet.Filter = null; // Build a CloudPool instead of querying the service on a Get CloudPool call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolGetResponse response = BatchTestHelpers.CreateCloudPoolGetResponse(cmdlet.Id); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudPoolGetResponse response = BatchTestHelpers.CreateCloudPoolGetResponse(cmdlet.Id); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -93,18 +82,8 @@ public void ListBatchPoolByODataFilterTest() string[] idsOfConstructedPools = new[] { "test1", "test2" }; // Build some CloudPools instead of querying the service on a List CloudPools call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolListResponse response = BatchTestHelpers.CreateCloudPoolListResponse(idsOfConstructedPools); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudPoolListResponse response = BatchTestHelpers.CreateCloudPoolListResponse(idsOfConstructedPools); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -139,18 +118,8 @@ public void ListBatchPoolWithoutFiltersTest() string[] idsOfConstructedPools = new[] { "pool1", "pool2", "pool3" }; // Build some CloudPools instead of querying the service on a List CloudPools call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolListResponse response = BatchTestHelpers.CreateCloudPoolListResponse(idsOfConstructedPools); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudPoolListResponse response = BatchTestHelpers.CreateCloudPoolListResponse(idsOfConstructedPools); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -190,18 +159,8 @@ public void ListPoolsMaxCountTest() string[] idsOfConstructedPools = new[] { "pool1", "pool2", "pool3" }; // Build some CloudPools instead of querying the service on a List CloudPools call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolListResponse response = BatchTestHelpers.CreateCloudPoolListResponse(idsOfConstructedPools); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudPoolListResponse response = BatchTestHelpers.CreateCloudPoolListResponse(idsOfConstructedPools); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs index e8a04858810e..122ced55cb07 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs @@ -16,12 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -59,18 +57,7 @@ public void NewBatchPoolParametersTest() cmdlet.OSFamily = "4"; // Don't go to the service on an Add CloudPool call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolAddResponse response = new CloudPoolAddResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs index e59a3b2adf93..4f31bb8503f0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs @@ -20,7 +20,6 @@ using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -60,18 +59,7 @@ public void RemoveBatchPoolParametersTest() cmdlet.Id = "testPool"; // Don't go to the service on a Delete CloudPool call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolDeleteResponse response = new CloudPoolDeleteResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs index 99ce0b58efd3..d3deeec93774 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs @@ -16,11 +16,9 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; @@ -61,19 +59,8 @@ public void SetPoolOSVersionParametersTest() cmdlet.TargetOSVersion = "targetOS"; - // Don't go to the service on an Upgrage OS call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolUpgradeOSResponse response = new CloudPoolUpgradeOSResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + // Don't go to the service on an Upgrade OS call + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -93,12 +80,13 @@ public void SetPoolOSVersionRequestTest() cmdlet.Id = "testPool"; cmdlet.TargetOSVersion = targetOS; - // Don't go to the service on an Enable AutoScale call + // Don't go to the service on an Upgrade OS call RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => { BatchRequest request = (BatchRequest)baseRequest; + // Grab the target OS version off the outgoing request requestTargetOS = request.TypedParameters.TargetOSVersion; request.ServiceRequestFunc = (cancellationToken) => diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs index e1d2f3dccda8..4ac1f58e933a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs @@ -16,13 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -58,18 +55,7 @@ public void StartPoolResizeParametersTest() cmdlet.Id = "testPool"; // Don't go to the service on a Resize CloudPool call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolResizeResponse response = new CloudPoolResizeResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs index b9dd7b7daf85..64a638872d50 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs @@ -19,9 +19,7 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -57,18 +55,7 @@ public void StopPoolResizeParametersTest() cmdlet.Id = "testPool"; // Don't go to the service on a StopResize CloudPool call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolStopResizeResponse response = new CloudPoolStopResizeResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs index 9a4adc20a634..c62dc8b3660f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs @@ -16,11 +16,9 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Threading.Tasks; using Xunit; @@ -62,18 +60,7 @@ public void TestAutoScaleParametersTest() cmdlet.AutoScaleFormula = "formula"; // Don't go to the service on an Evaluate AutoScale call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudPoolEvaluateAutoScaleResponse response = new CloudPoolEvaluateAutoScaleResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameter is set @@ -99,6 +86,7 @@ public void TestAutoScaleRequestTest() BatchRequest request = (BatchRequest)baseRequest; + // Grab the formula off the outgoing request. requestFormula = request.TypedParameters.AutoScaleFormula; request.ServiceRequestFunc = (cancellationToken) => diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchTaskCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchTaskCommandTests.cs index 84838ec0cf08..e53b3d02727d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchTaskCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchTaskCommandTests.cs @@ -22,7 +22,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -57,18 +56,7 @@ public void GetBatchTaskParametersTest() cmdlet.Filter = null; // Build a CloudTask instead of querying the service on a List CloudTask call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(new string[] {cmdlet.Id}); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; Assert.Throws(() => cmdlet.ExecuteCmdlet()); @@ -91,18 +79,8 @@ public void GetBatchTaskTest() cmdlet.Filter = null; // Build a CloudTask instead of querying the service on a Get CloudTask call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskGetResponse response = BatchTestHelpers.CreateCloudTaskGetResponse(cmdlet.Id); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudTaskGetResponse response = BatchTestHelpers.CreateCloudTaskGetResponse(cmdlet.Id); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -130,18 +108,8 @@ public void ListBatchTasksByODataFilterTest() string[] idsOfConstructedTasks = new[] { "testTask1", "testTask2" }; // Build some CloudTasks instead of querying the service on a List CloudTasks call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(idsOfConstructedTasks); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(idsOfConstructedTasks); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -177,18 +145,8 @@ public void ListBatchTasksWithoutFiltersTest() string[] idsOfConstructedTasks = new[] { "testTask1", "testTask2", "testTask3" }; // Build some CloudTasks instead of querying the service on a List CloudTasks call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(idsOfConstructedTasks); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(idsOfConstructedTasks); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later @@ -229,18 +187,8 @@ public void ListTasksMaxCountTest() string[] idsOfConstructedTasks = new[] { "testTask1", "testTask2", "testTask3" }; // Build some CloudTasks instead of querying the service on a List CloudTasks call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(idsOfConstructedTasks); - Task task = Task.FromResult(response); - return task; - }; - }); + CloudTaskListResponse response = BatchTestHelpers.CreateCloudTaskListResponse(idsOfConstructedTasks); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/NewBatchTaskCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/NewBatchTaskCommandTests.cs index 4d70d5795343..cbafce4f22ea 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/NewBatchTaskCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/NewBatchTaskCommandTests.cs @@ -16,12 +16,10 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Protocol; using Microsoft.Azure.Batch.Protocol.Models; -using Microsoft.Azure.Commands.Batch.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -61,18 +59,7 @@ public void NewBatchTaskParametersTest() cmdlet.Id = "testTask"; // Don't go to the service on an Add CloudTask call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskAddResponse response = new CloudTaskAddResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/RemoveBatchTaskCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/RemoveBatchTaskCommandTests.cs index 3506dff46ae9..a447f2c5de36 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/RemoveBatchTaskCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/RemoveBatchTaskCommandTests.cs @@ -20,7 +20,6 @@ using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -61,18 +60,7 @@ public void RemoveBatchTaskParametersTest() cmdlet.Id = "testTask"; // Don't go to the service on a Delete CloudTask call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskDeleteResponse response = new CloudTaskDeleteResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs index 0f1c7144255a..5626d04003fd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/StopBatchTaskCommandTests.cs @@ -20,7 +20,6 @@ using Moq; using System.Collections.Generic; using System.Management.Automation; -using System.Threading.Tasks; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; @@ -60,18 +59,7 @@ public void StopBatchTaskParametersTest() cmdlet.Id = "testTask"; // Don't go to the service on a Terminate CloudTask call - RequestInterceptor interceptor = new RequestInterceptor((baseRequest) => - { - BatchRequest request = - (BatchRequest)baseRequest; - - request.ServiceRequestFunc = (cancellationToken) => - { - CloudTaskTerminateResponse response = new CloudTaskTerminateResponse(); - Task task = Task.FromResult(response); - return task; - }; - }); + RequestInterceptor interceptor = BatchTestHelpers.CreateNoOpInterceptor(); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Verify no exceptions when required parameters are set From 07fe35ed92a25c69482ca676c0455e8f9be0464b Mon Sep 17 00:00:00 2001 From: jasper-schneider Date: Tue, 1 Sep 2015 10:18:52 -0700 Subject: [PATCH 25/58] Update Batch account cmdlets to use constants Create cmdlet noun constants for account cmdlets. Also alphabetize the constants. --- .../Accounts/GetBatchAccountCommand.cs | 6 ++---- .../Accounts/GetBatchAccountKeysCommand.cs | 4 ++-- .../Accounts/NewBatchAccountCommand.cs | 7 ++----- .../Accounts/NewBatchAccountKeyCommand.cs | 3 ++- .../Accounts/RemoveBatchAccountCommand.cs | 3 ++- .../Accounts/SetBatchAccountCommand.cs | 7 ++----- .../AzureBatch/Commands.Batch/Utils/Constants.cs | 15 +++++++++------ 7 files changed, 21 insertions(+), 24 deletions(-) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs index a270a5dd22af..51510547df3a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs @@ -12,15 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.Batch.Properties; -using Microsoft.Azure.Management.Batch.Models; using System.Collections; -using System.Collections.Generic; using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, "AzureBatchAccount"), OutputType(typeof(BatchAccountContext))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchAccount), OutputType(typeof(BatchAccountContext))] public class GetBatchAccountCommand : BatchCmdletBase { [Alias("Name")] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs index 04c51763a574..6e1b9501c7d1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs @@ -12,12 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.Batch.Properties; using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, "AzureBatchAccountKeys"), OutputType(typeof(BatchAccountContext))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchAccountKeys), OutputType(typeof(BatchAccountContext))] public class GetBatchAccountKeysCommand : BatchCmdletBase { internal const string ParameterSetContext = "Use Context"; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs index 7234c5a5112f..87f0db578925 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs @@ -12,16 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.Batch.Properties; -using Microsoft.Azure.Management.Batch.Models; -using Microsoft.WindowsAzure; using System.Collections; -using System.Collections.Generic; using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.New, "AzureBatchAccount"), OutputType(typeof(BatchAccountContext))] + [Cmdlet(VerbsCommon.New, Constants.AzureBatchAccount), OutputType(typeof(BatchAccountContext))] public class NewBatchAccountCommand : BatchCmdletBase { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to create.")] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs index de86fe450f73..88e1013c0020 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs @@ -14,10 +14,11 @@ using Microsoft.Azure.Management.Batch.Models; using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.New, "AzureBatchAccountKey"), OutputType(typeof(BatchAccountContext))] + [Cmdlet(VerbsCommon.New, Constants.AzureBatchAccountKey), OutputType(typeof(BatchAccountContext))] public class RegenBatchAccountKeyCommand : BatchCmdletBase { internal const string ParameterSetContext = "Use Context"; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs index 2ce88ab52b9f..e997b5d938b4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs @@ -14,10 +14,11 @@ using Microsoft.Azure.Commands.Batch.Properties; using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Remove, "AzureBatchAccount")] + [Cmdlet(VerbsCommon.Remove, Constants.AzureBatchAccount)] public class RemoveBatchAccountCommand : BatchCmdletBase { private static string mamlCall = "RemoveAccount"; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs index 684ae823c3aa..88e5c8193740 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs @@ -12,16 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.Batch.Properties; -using Microsoft.Azure.Management.Batch.Models; -using System; using System.Collections; -using System.Collections.Generic; using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Set, "AzureBatchAccount"), OutputType(typeof(BatchAccountContext))] + [Cmdlet(VerbsCommon.Set, Constants.AzureBatchAccount), OutputType(typeof(BatchAccountContext))] public class SetBatchAccountCommand : BatchCmdletBase { [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to update.")] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs index f4b03d86b933..e295b9976f12 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Utils/Constants.cs @@ -19,18 +19,21 @@ public class Constants public const int DefaultMaxCount = 1000; // Cmdlet nouns - public const string AzureBatchPool = "AzureBatchPool"; - public const string AzureBatchPoolResize = "AzureBatchPoolResize"; + public const string AzureBatchAccount = "AzureBatchAccount"; + public const string AzureBatchAccountKey = "AzureBatchAccountKey"; + public const string AzureBatchAccountKeys = "AzureBatchAccountKeys"; + public const string AzureBatchAutoScale = "AzureBatchAutoScale"; public const string AzureBatchComputeNode = "AzureBatchComputeNode"; public const string AzureBatchComputeNodeUser = "AzureBatchComputeNodeUser"; - public const string AzureBatchJobSchedule = "AzureBatchJobSchedule"; public const string AzureBatchJob = "AzureBatchJob"; - public const string AzureBatchTask = "AzureBatchTask"; + public const string AzureBatchJobSchedule = "AzureBatchJobSchedule"; public const string AzureBatchNodeFile = "AzureBatchNodeFile"; public const string AzureBatchNodeFileContent = "AzureBatchNodeFileContent"; - public const string AzureBatchRemoteDesktopProtocolFile = "AzureBatchRemoteDesktopProtocolFile"; - public const string AzureBatchAutoScale = "AzureBatchAutoScale"; + public const string AzureBatchPool = "AzureBatchPool"; public const string AzureBatchPoolOSVersion = "AzureBatchPoolOSVersion"; + public const string AzureBatchPoolResize = "AzureBatchPoolResize"; + public const string AzureBatchRemoteDesktopProtocolFile = "AzureBatchRemoteDesktopProtocolFile"; + public const string AzureBatchTask = "AzureBatchTask"; // Parameter sets public const string IdParameterSet = "Id"; From 25e20064b84be18e2ef9cf71d447e012af8b235e Mon Sep 17 00:00:00 2001 From: jasper-schneider Date: Tue, 1 Sep 2015 10:27:00 -0700 Subject: [PATCH 26/58] Make Batch resource strings consistent --- .../Accounts/RemoveBatchAccountCommand.cs | 4 +- .../RemoveBatchComputeNodeUserCommand.cs | 4 +- .../RemoveBatchJobScheduleCommand.cs | 4 +- .../Jobs/RemoveBatchJobCommand.cs | 4 +- .../Models/BatchClient.Accounts.cs | 2 +- .../Models/BatchClient.ComputeNodeUsers.cs | 2 +- .../Models/BatchClient.ComputeNodes.cs | 6 +- .../Models/BatchClient.Files.cs | 16 +- .../Models/BatchClient.JobSchedules.cs | 8 +- .../Commands.Batch/Models/BatchClient.Jobs.cs | 8 +- .../Models/BatchClient.Pools.cs | 12 +- .../Models/BatchClient.Tasks.cs | 8 +- .../Pools/RemoveBatchPoolCommand.cs | 4 +- .../Properties/Resources.Designer.cs | 439 +++++++++--------- .../Commands.Batch/Properties/Resources.resx | 213 +++++---- .../Tasks/RemoveBatchTaskCommand.cs | 4 +- 16 files changed, 363 insertions(+), 375 deletions(-) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs index e997b5d938b4..5b117cbe6fb5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs @@ -39,8 +39,8 @@ public override void ExecuteCmdlet() { ConfirmAction( Force.IsPresent, - string.Format(Resources.RBA_RemoveConfirm, this.AccountName), - Resources.RBA_RemoveResource, + string.Format(Resources.RemoveAccountConfirm, this.AccountName), + Resources.RemoveBatchAccount, this.AccountName, () => DeleteAction(this.ResourceGroupName, this.AccountName)); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs index 8d37b7489884..053eb3a16a3c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs @@ -46,8 +46,8 @@ public override void ExecuteCmdlet() ConfirmAction( Force.IsPresent, - string.Format(Resources.RBU_RemoveConfirm, this.Name), - Resources.RBU_RemoveUser, + string.Format(Resources.RemoveComputeNodeUserConfirm, this.Name), + Resources.RemoveComputeNodeUser, this.Name, () => BatchClient.DeleteComputeNodeUser(parameters)); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs index e72c3cd314c5..5a927afbb575 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs @@ -32,8 +32,8 @@ public override void ExecuteCmdlet() { ConfirmAction( Force.IsPresent, - string.Format(Resources.RBJS_RemoveConfirm, this.Id), - Resources.RBJS_RemoveJobSchedule, + string.Format(Resources.RemoveJobScheduleConfirm, this.Id), + Resources.RemoveJobSchedule, this.Id, () => BatchClient.DeleteJobSchedule(this.BatchContext, this.Id, this.AdditionalBehaviors)); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs index fc0a41c1e8b5..aaa9514ce717 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs @@ -32,8 +32,8 @@ public override void ExecuteCmdlet() { ConfirmAction( Force.IsPresent, - string.Format(Resources.RBJ_RemoveConfirm, this.Id), - Resources.RBJ_RemoveJob, + string.Format(Resources.RemoveJobConfirm, this.Id), + Resources.RemoveJob, this.Id, () => BatchClient.DeleteJob(this.BatchContext, this.Id, this.AdditionalBehaviors)); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Accounts.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Accounts.cs index f5728d86cba6..0a420295d579 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Accounts.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Accounts.cs @@ -39,7 +39,7 @@ public virtual BatchAccountContext CreateAccount(string resourceGroupName, strin // group name nor the exception if (GetGroupForAccountNoThrow(accountName) != null) { - throw new CloudException(Resources.NBA_AccountAlreadyExists); + throw new CloudException(Resources.AccountAlreadyExists); } Dictionary tagDictionary = Helpers.CreateTagDictionary(tags, validate: true); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodeUsers.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodeUsers.cs index c740dca1ffdd..587ed9e7c4ba 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodeUsers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodeUsers.cs @@ -53,7 +53,7 @@ public void CreateComputeNodeUser(NewComputeNodeUserParameters options) user.ExpiryTime = options.ExpiryTime; user.IsAdmin = options.IsAdmin; - WriteVerbose(string.Format(Resources.NBU_CreatingUser, user.Name, computeNodeId)); + WriteVerbose(string.Format(Resources.CreatingComputeNodeUser, user.Name, computeNodeId)); user.Commit(ComputeNodeUserCommitSemantics.AddUser, options.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs index 652d7d4f9e79..99a067a2f1fc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.ComputeNodes.cs @@ -40,7 +40,7 @@ public IEnumerable ListComputeNodes(ListComputeNodeOptions option // Get the single compute node matching the specified id if (!string.IsNullOrEmpty(options.ComputeNodeId)) { - WriteVerbose(string.Format(Resources.GBCN_GetById, options.ComputeNodeId, poolId)); + WriteVerbose(string.Format(Resources.GetComputeNodeById, options.ComputeNodeId, poolId)); PoolOperations poolOperations = options.Context.BatchOMClient.PoolOperations; ComputeNode computeNode = poolOperations.GetComputeNode(poolId, options.ComputeNodeId, additionalBehaviors: options.AdditionalBehaviors); PSComputeNode psComputeNode = new PSComputeNode(computeNode); @@ -53,12 +53,12 @@ public IEnumerable ListComputeNodes(ListComputeNodeOptions option string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = string.Format(Resources.GBCN_GetByOData, poolId); + verboseLogString = string.Format(Resources.GetComputeNodeByOData, poolId); odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = string.Format(Resources.GBCN_NoFilter, poolId); + verboseLogString = string.Format(Resources.GetComputeNodeNoFilter, poolId); } WriteVerbose(verboseLogString); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Files.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Files.cs index 982b01f5914a..d347ffae1f21 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Files.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Files.cs @@ -61,7 +61,7 @@ private IEnumerable ListNodeFilesByTask(ListNodeFileOptions options) // Get the single node file matching the specified name if (!string.IsNullOrEmpty(options.NodeFileName)) { - WriteVerbose(string.Format(Resources.GBTF_GetByName, options.NodeFileName, options.TaskId)); + WriteVerbose(string.Format(Resources.GetNodeFileByTaskByName, options.NodeFileName, options.TaskId)); JobOperations jobOperations = options.Context.BatchOMClient.JobOperations; NodeFile nodeFile = jobOperations.GetNodeFile(options.JobId, options.TaskId, options.NodeFileName, options.AdditionalBehaviors); PSNodeFile psNodeFile = new PSNodeFile(nodeFile); @@ -75,12 +75,12 @@ private IEnumerable ListNodeFilesByTask(ListNodeFileOptions options) string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = string.Format(Resources.GBTF_GetByOData, taskId); + verboseLogString = string.Format(Resources.GetNodeFileByTaskByOData, taskId); odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = string.Format(Resources.GBTF_NoFilter, taskId); + verboseLogString = string.Format(Resources.GetNodeFileByTaskNoFilter, taskId); } WriteVerbose(verboseLogString); @@ -106,7 +106,7 @@ private IEnumerable ListNodeFilesByComputeNode(ListNodeFileOptions o // Get the single node file matching the specified name if (!string.IsNullOrEmpty(options.NodeFileName)) { - WriteVerbose(string.Format(Resources.GBCNF_GetByName, options.NodeFileName, options.ComputeNodeId)); + WriteVerbose(string.Format(Resources.GetNodeFileByComputeNodeByName, options.NodeFileName, options.ComputeNodeId)); PoolOperations poolOperations = options.Context.BatchOMClient.PoolOperations; NodeFile nodeFile = poolOperations.GetNodeFile(options.PoolId, options.ComputeNodeId, options.NodeFileName, options.AdditionalBehaviors); PSNodeFile psNodeFile = new PSNodeFile(nodeFile); @@ -120,12 +120,12 @@ private IEnumerable ListNodeFilesByComputeNode(ListNodeFileOptions o string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = string.Format(Resources.GBCNF_GetByOData, computeNodeId); + verboseLogString = string.Format(Resources.GetNodeFileByComputeNodeByOData, computeNodeId); odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = string.Format(Resources.GBCNF_NoFilter, computeNodeId); + verboseLogString = string.Format(Resources.GetNodeFileByComputeNodeNoFilter, computeNodeId); } WriteVerbose(verboseLogString); @@ -195,7 +195,7 @@ private void DownloadNodeFileByInstance(NodeFile file, string destinationPath, S } else { - WriteVerbose(string.Format(Resources.GBNFC_Downloading, file.Name, destinationPath)); + WriteVerbose(string.Format(Resources.DownloadingNodeFile, file.Name, destinationPath)); using (FileStream fs = new FileStream(destinationPath, FileMode.Create)) { file.CopyToStream(fs, additionalBehaviors); @@ -222,7 +222,7 @@ public void DownloadRemoteDesktopProtocolFile(DownloadRemoteDesktopProtocolFileO else { string computeNodeId = options.ComputeNode == null ? options.ComputeNodeId : options.ComputeNode.Id; - WriteVerbose(string.Format(Resources.GBRDP_Downloading, computeNodeId, options.DestinationPath)); + WriteVerbose(string.Format(Resources.DownloadingRDPFile, computeNodeId, options.DestinationPath)); using (FileStream fs = new FileStream(options.DestinationPath, FileMode.Create)) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs index 10afecb74dae..94a1ce5de840 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.JobSchedules.cs @@ -40,7 +40,7 @@ public IEnumerable ListJobSchedules(ListJobScheduleOptions o // Get the single job schedule matching the specified id if (!string.IsNullOrWhiteSpace(options.JobScheduleId)) { - WriteVerbose(string.Format(Resources.GBJS_GetById, options.JobScheduleId)); + WriteVerbose(string.Format(Resources.GetJobScheduleById, options.JobScheduleId)); JobScheduleOperations jobScheduleOperations = options.Context.BatchOMClient.JobScheduleOperations; CloudJobSchedule jobSchedule = jobScheduleOperations.GetJobSchedule(options.JobScheduleId, additionalBehaviors: options.AdditionalBehaviors); PSCloudJobSchedule psJobSchedule = new PSCloudJobSchedule(jobSchedule); @@ -53,12 +53,12 @@ public IEnumerable ListJobSchedules(ListJobScheduleOptions o string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = Resources.GBJS_GetByOData; + verboseLogString = Resources.GetJobScheduleByOData; odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = Resources.GBJS_NoFilter; + verboseLogString = Resources.GetJobScheduleNoFilter; } WriteVerbose(verboseLogString); @@ -107,7 +107,7 @@ public void CreateJobSchedule(NewJobScheduleParameters parameters) jobSchedule.Metadata.Add(metadata); } } - WriteVerbose(string.Format(Resources.NBJS_CreatingJobSchedule, parameters.JobScheduleId)); + WriteVerbose(string.Format(Resources.CreatingJobSchedule, parameters.JobScheduleId)); jobSchedule.Commit(parameters.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs index a0c6f1b595d1..ff89a7120bbd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Jobs.cs @@ -39,7 +39,7 @@ public IEnumerable ListJobs(ListJobOptions options) // Get the single job matching the specified id if (!string.IsNullOrEmpty(options.JobId)) { - WriteVerbose(string.Format(Resources.GBJ_GetById, options.JobId)); + WriteVerbose(string.Format(Resources.GetJobById, options.JobId)); JobOperations jobOperations = options.Context.BatchOMClient.JobOperations; CloudJob job = jobOperations.GetJob(options.JobId, additionalBehaviors: options.AdditionalBehaviors); PSCloudJob psJob = new PSCloudJob(job); @@ -55,12 +55,12 @@ public IEnumerable ListJobs(ListJobOptions options) string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = filterByJobSchedule ? Resources.GBJ_GetByOData : string.Format(Resources.GBJ_GetByODataAndJobSChedule, jobScheduleId); + verboseLogString = filterByJobSchedule ? Resources.GetJobByOData : string.Format(Resources.GetJobByODataAndJobSChedule, jobScheduleId); odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = filterByJobSchedule ? Resources.GBJ_GetNoFilter : string.Format(Resources.GBJ_GetByJobScheduleNoFilter, jobScheduleId); + verboseLogString = filterByJobSchedule ? Resources.GetJobNoFilter : string.Format(Resources.GetJobByJobScheduleNoFilter, jobScheduleId); } WriteVerbose(verboseLogString); @@ -149,7 +149,7 @@ public void CreateJob(NewJobParameters parameters) job.PoolInformation = parameters.PoolInformation.omObject; } - WriteVerbose(string.Format(Resources.NBJ_CreatingJob, parameters.JobId)); + WriteVerbose(string.Format(Resources.CreatingJob, parameters.JobId)); job.Commit(parameters.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs index fbf85c8464ef..1a4e76c60c17 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Pools.cs @@ -39,7 +39,7 @@ public IEnumerable ListPools(ListPoolOptions options) // Get the single pool matching the specified id if (!string.IsNullOrWhiteSpace(options.PoolId)) { - WriteVerbose(string.Format(Resources.GBP_GetById, options.PoolId)); + WriteVerbose(string.Format(Resources.GetPoolById, options.PoolId)); PoolOperations poolOperations = options.Context.BatchOMClient.PoolOperations; CloudPool pool = poolOperations.GetPool(options.PoolId, additionalBehaviors: options.AdditionalBehaviors); PSCloudPool psPool = new PSCloudPool(pool); @@ -52,12 +52,12 @@ public IEnumerable ListPools(ListPoolOptions options) string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = Resources.GBP_GetByOData; + verboseLogString = Resources.GetPoolByOData; odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = Resources.GBP_NoFilter; + verboseLogString = Resources.GetPoolNoFilter; } WriteVerbose(verboseLogString); @@ -126,7 +126,7 @@ public void CreatePool(NewPoolParameters parameters) } } - WriteVerbose(string.Format(Resources.NBP_CreatingPool, parameters.PoolId)); + WriteVerbose(string.Format(Resources.CreatingPool, parameters.PoolId)); pool.Commit(parameters.AdditionalBehaviors); } @@ -160,7 +160,7 @@ public void ResizePool(PoolResizeParameters parameters) string poolId = parameters.Pool == null ? parameters.PoolId : parameters.Pool.Id; - WriteVerbose(string.Format(Resources.SBPR_ResizingPool, poolId, parameters.TargetDedicated)); + WriteVerbose(string.Format(Resources.ResizingPool, poolId, parameters.TargetDedicated)); PoolOperations poolOperations = parameters.Context.BatchOMClient.PoolOperations; poolOperations.ResizePool(poolId, parameters.TargetDedicated, parameters.ResizeTimeout, parameters.ComputeNodeDeallocationOption, parameters.AdditionalBehaviors); } @@ -178,7 +178,7 @@ public void StopResizePool(BatchAccountContext context, string poolId, IEnumerab throw new ArgumentNullException("poolId"); } - WriteVerbose(string.Format(Resources.SBPR_StopResizingPool, poolId)); + WriteVerbose(string.Format(Resources.StopResizingPool, poolId)); PoolOperations poolOperations = context.BatchOMClient.PoolOperations; poolOperations.StopResizePool(poolId, additionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs index fae8c65a92d6..3ac03bb3eb7b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Models/BatchClient.Tasks.cs @@ -39,7 +39,7 @@ public IEnumerable ListTasks(ListTaskOptions options) // Get the single task matching the specified id if (!string.IsNullOrEmpty(options.TaskId)) { - WriteVerbose(string.Format(Resources.GBT_GetById, options.TaskId, options.JobId)); + WriteVerbose(string.Format(Resources.GetTaskById, options.TaskId, options.JobId)); JobOperations jobOperations = options.Context.BatchOMClient.JobOperations; CloudTask task = jobOperations.GetTask(options.JobId, options.TaskId, additionalBehaviors: options.AdditionalBehaviors); PSCloudTask psTask = new PSCloudTask(task); @@ -53,12 +53,12 @@ public IEnumerable ListTasks(ListTaskOptions options) string verboseLogString = null; if (!string.IsNullOrEmpty(options.Filter)) { - verboseLogString = string.Format(Resources.GBT_GetByOData, jobId); + verboseLogString = string.Format(Resources.GetTaskByOData, jobId); odata = new ODATADetailLevel(filterClause: options.Filter); } else { - verboseLogString = string.Format(Resources.GBT_GetNoFilter, jobId); + verboseLogString = string.Format(Resources.GetTaskNoFilter, jobId); } WriteVerbose(verboseLogString); @@ -123,7 +123,7 @@ public void CreateTask(NewTaskParameters parameters) task.Constraints = parameters.Constraints.omObject; } - WriteVerbose(string.Format(Resources.NBT_CreatingTask, parameters.TaskId)); + WriteVerbose(string.Format(Resources.CreatingTask, parameters.TaskId)); if (parameters.Job != null) { parameters.Job.omObject.AddTask(task, parameters.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs index bd8a2b8d9fce..d765b8f3f279 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs @@ -35,8 +35,8 @@ public override void ExecuteCmdlet() { ConfirmAction( Force.IsPresent, - string.Format(Resources.RBP_RemoveConfirm, this.Id), - Resources.RBP_RemovePool, + string.Format(Resources.RemovePoolConfirm, this.Id), + Resources.RemovePool, this.Id, () => BatchClient.DeletePool(this.BatchContext, this.Id, this.AdditionalBehaviors)); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs index 2cdd535fcb21..474e706a0b57 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs @@ -60,6 +60,15 @@ internal Resources() { } } + /// + /// Looks up a localized string similar to AccountAlreadyExists: Account already exists.. + /// + internal static string AccountAlreadyExists { + get { + return ResourceManager.GetString("AccountAlreadyExists", resourceCulture); + } + } + /// /// Looks up a localized string similar to Executing cmdlet with Batch account {0} with its {1} key. To change which key to use, set the KeyInUse property on the BatchAccountContext.. /// @@ -88,470 +97,452 @@ internal static string ChangeOSVersion { } /// - /// Looks up a localized string similar to Disabling automatic scaling on pool {0}.. - /// - internal static string DisableAutoScale { - get { - return ResourceManager.GetString("DisableAutoScale", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disabling job {0}.. - /// - internal static string DisableJob { - get { - return ResourceManager.GetString("DisableJob", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disabling job schedule {0}.. + /// Looks up a localized string similar to Performing name availability check for account {0}. /// - internal static string DisableJobSchedule { + internal static string CheckingAccountNameAvailability { get { - return ResourceManager.GetString("DisableJobSchedule", resourceCulture); + return ResourceManager.GetString("CheckingAccountNameAvailability", resourceCulture); } } /// - /// Looks up a localized string similar to Enabling automatic scaling on pool {0} using the formula: {1}. + /// Looks up a localized string similar to Creating user {0} on compute node {1}. /// - internal static string EnableAutoScale { + internal static string CreatingComputeNodeUser { get { - return ResourceManager.GetString("EnableAutoScale", resourceCulture); + return ResourceManager.GetString("CreatingComputeNodeUser", resourceCulture); } } /// - /// Looks up a localized string similar to Enabling job {0}.. + /// Looks up a localized string similar to Creating job {0}. /// - internal static string EnableJob { + internal static string CreatingJob { get { - return ResourceManager.GetString("EnableJob", resourceCulture); + return ResourceManager.GetString("CreatingJob", resourceCulture); } } /// - /// Looks up a localized string similar to Enabling job schedule {0}.. + /// Looks up a localized string similar to Creating job schedule {0}. /// - internal static string EnableJobSchedule { + internal static string CreatingJobSchedule { get { - return ResourceManager.GetString("EnableJobSchedule", resourceCulture); + return ResourceManager.GetString("CreatingJobSchedule", resourceCulture); } } /// - /// Looks up a localized string similar to End {0} call to RP. + /// Looks up a localized string similar to Creating pool {0}. /// - internal static string EndMAMLCall { + internal static string CreatingPool { get { - return ResourceManager.GetString("EndMAMLCall", resourceCulture); + return ResourceManager.GetString("CreatingPool", resourceCulture); } } /// - /// Looks up a localized string similar to Evaluating the following autoscale formula on pool {0}: {1}. + /// Looks up a localized string similar to Creating task {0}. /// - internal static string EvaluateAutoScale { + internal static string CreatingTask { get { - return ResourceManager.GetString("EvaluateAutoScale", resourceCulture); + return ResourceManager.GetString("CreatingTask", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all accounts in subscription. + /// Looks up a localized string similar to Disabling automatic scaling on pool {0}.. /// - internal static string GBA_AllAccounts { + internal static string DisableAutoScale { get { - return ResourceManager.GetString("GBA_AllAccounts", resourceCulture); + return ResourceManager.GetString("DisableAutoScale", resourceCulture); } } /// - /// Looks up a localized string similar to Getting accounts in resource group {0}. + /// Looks up a localized string similar to Disabling job {0}.. /// - internal static string GBA_ResGroupAccounts { + internal static string DisableJob { get { - return ResourceManager.GetString("GBA_ResGroupAccounts", resourceCulture); + return ResourceManager.GetString("DisableJob", resourceCulture); } } /// - /// Looks up a localized string similar to Getting account keys for {0}. + /// Looks up a localized string similar to Disabling job schedule {0}.. /// - internal static string GBAK_GettingKeys { + internal static string DisableJobSchedule { get { - return ResourceManager.GetString("GBAK_GettingKeys", resourceCulture); + return ResourceManager.GetString("DisableJobSchedule", resourceCulture); } } /// - /// Looks up a localized string similar to Getting compute node "{0}" from pool "{1}".. + /// Looks up a localized string similar to Downloading node file {0} to: {1}. /// - internal static string GBCN_GetById { + internal static string DownloadingNodeFile { get { - return ResourceManager.GetString("GBCN_GetById", resourceCulture); + return ResourceManager.GetString("DownloadingNodeFile", resourceCulture); } } /// - /// Looks up a localized string similar to Getting compute nodes matching the specified OData filter from pool "{0}".. + /// Looks up a localized string similar to Downloading Remote Desktop Protocol file for compute node {0} to: {1}. /// - internal static string GBCN_GetByOData { + internal static string DownloadingRDPFile { get { - return ResourceManager.GetString("GBCN_GetByOData", resourceCulture); + return ResourceManager.GetString("DownloadingRDPFile", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all compute nodes under pool "{0}".. + /// Looks up a localized string similar to Enabling automatic scaling on pool {0} using the formula: {1}. /// - internal static string GBCN_NoFilter { + internal static string EnableAutoScale { get { - return ResourceManager.GetString("GBCN_NoFilter", resourceCulture); + return ResourceManager.GetString("EnableAutoScale", resourceCulture); } } /// - /// Looks up a localized string similar to Getting node file "{0}" from compute node "{1}". + /// Looks up a localized string similar to Enabling job {0}.. /// - internal static string GBCNF_GetByName { + internal static string EnableJob { get { - return ResourceManager.GetString("GBCNF_GetByName", resourceCulture); + return ResourceManager.GetString("EnableJob", resourceCulture); } } /// - /// Looks up a localized string similar to Getting node files matching the specified OData filter from compute node "{0}".. + /// Looks up a localized string similar to Enabling job schedule {0}.. /// - internal static string GBCNF_GetByOData { + internal static string EnableJobSchedule { get { - return ResourceManager.GetString("GBCNF_GetByOData", resourceCulture); + return ResourceManager.GetString("EnableJobSchedule", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all node files from compute node "{0}".. + /// Looks up a localized string similar to End {0} call to RP. /// - internal static string GBCNF_NoFilter { + internal static string EndMAMLCall { get { - return ResourceManager.GetString("GBCNF_NoFilter", resourceCulture); + return ResourceManager.GetString("EndMAMLCall", resourceCulture); } } /// - /// Looks up a localized string similar to Getting job "{0}". + /// Looks up a localized string similar to Evaluating the following autoscale formula on pool {0}: {1}. /// - internal static string GBJ_GetById { + internal static string EvaluateAutoScale { get { - return ResourceManager.GetString("GBJ_GetById", resourceCulture); + return ResourceManager.GetString("EvaluateAutoScale", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all jobs from job schedule "{0}".. + /// Looks up a localized string similar to Getting all accounts in subscription. /// - internal static string GBJ_GetByJobScheduleNoFilter { + internal static string GetAllAccounts { get { - return ResourceManager.GetString("GBJ_GetByJobScheduleNoFilter", resourceCulture); + return ResourceManager.GetString("GetAllAccounts", resourceCulture); } } /// - /// Looks up a localized string similar to Getting jobs matching the specified OData filter.. + /// Looks up a localized string similar to Getting compute node "{0}" from pool "{1}".. /// - internal static string GBJ_GetByOData { + internal static string GetComputeNodeById { get { - return ResourceManager.GetString("GBJ_GetByOData", resourceCulture); + return ResourceManager.GetString("GetComputeNodeById", resourceCulture); } } /// - /// Looks up a localized string similar to Getting jobs matching the specified OData filter from job schedule "{0}".. + /// Looks up a localized string similar to Getting compute nodes matching the specified OData filter from pool "{0}".. /// - internal static string GBJ_GetByODataAndJobSChedule { + internal static string GetComputeNodeByOData { get { - return ResourceManager.GetString("GBJ_GetByODataAndJobSChedule", resourceCulture); + return ResourceManager.GetString("GetComputeNodeByOData", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all jobs associated with the Batch account.. + /// Looks up a localized string similar to Getting all compute nodes under pool "{0}".. /// - internal static string GBJ_GetNoFilter { + internal static string GetComputeNodeNoFilter { get { - return ResourceManager.GetString("GBJ_GetNoFilter", resourceCulture); + return ResourceManager.GetString("GetComputeNodeNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to Getting job schedule "{0}". + /// Looks up a localized string similar to Getting job "{0}". /// - internal static string GBJS_GetById { + internal static string GetJobById { get { - return ResourceManager.GetString("GBJS_GetById", resourceCulture); + return ResourceManager.GetString("GetJobById", resourceCulture); } } /// - /// Looks up a localized string similar to Getting job schedules matching the specified OData filter. . + /// Looks up a localized string similar to Getting all jobs from job schedule "{0}".. /// - internal static string GBJS_GetByOData { + internal static string GetJobByJobScheduleNoFilter { get { - return ResourceManager.GetString("GBJS_GetByOData", resourceCulture); + return ResourceManager.GetString("GetJobByJobScheduleNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all job schedules associated with the Batch account. . + /// Looks up a localized string similar to Getting jobs matching the specified OData filter.. /// - internal static string GBJS_NoFilter { + internal static string GetJobByOData { get { - return ResourceManager.GetString("GBJS_NoFilter", resourceCulture); + return ResourceManager.GetString("GetJobByOData", resourceCulture); } } /// - /// Looks up a localized string similar to Downloading node file {0} to: {1}. + /// Looks up a localized string similar to Getting jobs matching the specified OData filter from job schedule "{0}".. /// - internal static string GBNFC_Downloading { + internal static string GetJobByODataAndJobSChedule { get { - return ResourceManager.GetString("GBNFC_Downloading", resourceCulture); + return ResourceManager.GetString("GetJobByODataAndJobSChedule", resourceCulture); } } /// - /// Looks up a localized string similar to Getting pool "{0}". + /// Looks up a localized string similar to Getting all jobs associated with the Batch account.. /// - internal static string GBP_GetById { + internal static string GetJobNoFilter { get { - return ResourceManager.GetString("GBP_GetById", resourceCulture); + return ResourceManager.GetString("GetJobNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to Getting pools matching the specified OData filter. . + /// Looks up a localized string similar to Getting job schedule "{0}". /// - internal static string GBP_GetByOData { + internal static string GetJobScheduleById { get { - return ResourceManager.GetString("GBP_GetByOData", resourceCulture); + return ResourceManager.GetString("GetJobScheduleById", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all pools associated with the Batch account. . + /// Looks up a localized string similar to Getting job schedules matching the specified OData filter. . /// - internal static string GBP_NoFilter { + internal static string GetJobScheduleByOData { get { - return ResourceManager.GetString("GBP_NoFilter", resourceCulture); + return ResourceManager.GetString("GetJobScheduleByOData", resourceCulture); } } /// - /// Looks up a localized string similar to Downloading Remote Desktop Protocol file for compute node {0} to: {1}. + /// Looks up a localized string similar to Getting all job schedules associated with the Batch account. . /// - internal static string GBRDP_Downloading { + internal static string GetJobScheduleNoFilter { get { - return ResourceManager.GetString("GBRDP_Downloading", resourceCulture); + return ResourceManager.GetString("GetJobScheduleNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to Getting task "{0}" from job "{1}". + /// Looks up a localized string similar to Getting node file "{0}" from compute node "{1}". /// - internal static string GBT_GetById { + internal static string GetNodeFileByComputeNodeByName { get { - return ResourceManager.GetString("GBT_GetById", resourceCulture); + return ResourceManager.GetString("GetNodeFileByComputeNodeByName", resourceCulture); } } /// - /// Looks up a localized string similar to Getting tasks matching the specified OData filter from job "{0}".. + /// Looks up a localized string similar to Getting node files matching the specified OData filter from compute node "{0}".. /// - internal static string GBT_GetByOData { + internal static string GetNodeFileByComputeNodeByOData { get { - return ResourceManager.GetString("GBT_GetByOData", resourceCulture); + return ResourceManager.GetString("GetNodeFileByComputeNodeByOData", resourceCulture); } } /// - /// Looks up a localized string similar to Getting all tasks from job "{0}".. + /// Looks up a localized string similar to Getting all node files from compute node "{0}".. /// - internal static string GBT_GetNoFilter { + internal static string GetNodeFileByComputeNodeNoFilter { get { - return ResourceManager.GetString("GBT_GetNoFilter", resourceCulture); + return ResourceManager.GetString("GetNodeFileByComputeNodeNoFilter", resourceCulture); } } /// /// Looks up a localized string similar to Getting node file "{0}" from task "{1}". /// - internal static string GBTF_GetByName { + internal static string GetNodeFileByTaskByName { get { - return ResourceManager.GetString("GBTF_GetByName", resourceCulture); + return ResourceManager.GetString("GetNodeFileByTaskByName", resourceCulture); } } /// /// Looks up a localized string similar to Getting node files matching the specified OData filter from task "{0}".. /// - internal static string GBTF_GetByOData { + internal static string GetNodeFileByTaskByOData { get { - return ResourceManager.GetString("GBTF_GetByOData", resourceCulture); + return ResourceManager.GetString("GetNodeFileByTaskByOData", resourceCulture); } } /// /// Looks up a localized string similar to Getting all node files under task "{0}".. /// - internal static string GBTF_NoFilter { + internal static string GetNodeFileByTaskNoFilter { get { - return ResourceManager.GetString("GBTF_NoFilter", resourceCulture); + return ResourceManager.GetString("GetNodeFileByTaskNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to No compute node was specified. Supply a PSComputeNode object or a pool id and compute node id for the Remote Desktop Protocol file to point to.. + /// Looks up a localized string similar to Getting pool "{0}". /// - internal static string GRDP_NoComputeNode { + internal static string GetPoolById { get { - return ResourceManager.GetString("GRDP_NoComputeNode", resourceCulture); + return ResourceManager.GetString("GetPoolById", resourceCulture); } } /// - /// Looks up a localized string similar to The endpoint is not recognized as valid: {0}. + /// Looks up a localized string similar to Getting pools matching the specified OData filter. . /// - internal static string InvalidEndpointType { + internal static string GetPoolByOData { get { - return ResourceManager.GetString("InvalidEndpointType", resourceCulture); + return ResourceManager.GetString("GetPoolByOData", resourceCulture); } } /// - /// Looks up a localized string similar to The resource ID is not recognized as valid: {0}. + /// Looks up a localized string similar to Getting all pools associated with the Batch account. . /// - internal static string InvalidResourceId { + internal static string GetPoolNoFilter { get { - return ResourceManager.GetString("InvalidResourceId", resourceCulture); + return ResourceManager.GetString("GetPoolNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to Invalid tag format. Expect @{Name = "tagName"} or @{Name = "tagName"; Value = "tagValue"}. + /// Looks up a localized string similar to Getting accounts in resource group {0}. /// - internal static string InvalidTagFormat { + internal static string GetResourceGroupAccounts { get { - return ResourceManager.GetString("InvalidTagFormat", resourceCulture); + return ResourceManager.GetString("GetResourceGroupAccounts", resourceCulture); } } /// - /// Looks up a localized string similar to Invalid tag format. Ensure that each tag has a unique name. Example: @{Name = "tagName1"; Value = "tagValue1"}, @{Name = "tagName2"; Value = "tagValue2"}. + /// Looks up a localized string similar to Getting task "{0}" from job "{1}". /// - internal static string InvalidTagFormatNotUniqueName { + internal static string GetTaskById { get { - return ResourceManager.GetString("InvalidTagFormatNotUniqueName", resourceCulture); + return ResourceManager.GetString("GetTaskById", resourceCulture); } } /// - /// Looks up a localized string similar to The current KeyInUse on this BatchAccountContext is the {0} key, but this key is not populated on the BatchAccountContext object. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its keys populated.. + /// Looks up a localized string similar to Getting tasks matching the specified OData filter from job "{0}".. /// - internal static string KeyNotPresent { + internal static string GetTaskByOData { get { - return ResourceManager.GetString("KeyNotPresent", resourceCulture); + return ResourceManager.GetString("GetTaskByOData", resourceCulture); } } /// - /// Looks up a localized string similar to A max count of {0} will be returned.. + /// Looks up a localized string similar to Getting all tasks from job "{0}".. /// - internal static string MaxCount { + internal static string GetTaskNoFilter { get { - return ResourceManager.GetString("MaxCount", resourceCulture); + return ResourceManager.GetString("GetTaskNoFilter", resourceCulture); } } /// - /// Looks up a localized string similar to Cannot find resource group name in ID property: {0}. + /// Looks up a localized string similar to Getting account keys for {0}. /// - internal static string MissingResGroupName { + internal static string GettingAccountKeys { get { - return ResourceManager.GetString("MissingResGroupName", resourceCulture); + return ResourceManager.GetString("GettingAccountKeys", resourceCulture); } } /// - /// Looks up a localized string similar to AccountAlreadyExists: Account already exists.. + /// Looks up a localized string similar to The endpoint is not recognized as valid: {0}. /// - internal static string NBA_AccountAlreadyExists { + internal static string InvalidEndpointType { get { - return ResourceManager.GetString("NBA_AccountAlreadyExists", resourceCulture); + return ResourceManager.GetString("InvalidEndpointType", resourceCulture); } } /// - /// Looks up a localized string similar to Checking if account already exists. + /// Looks up a localized string similar to The resource ID is not recognized as valid: {0}. /// - internal static string NBA_LookupAccount { + internal static string InvalidResourceId { get { - return ResourceManager.GetString("NBA_LookupAccount", resourceCulture); + return ResourceManager.GetString("InvalidResourceId", resourceCulture); } } /// - /// Looks up a localized string similar to Performing name availability check for account {0}. + /// Looks up a localized string similar to Invalid tag format. Expect @{Name = "tagName"} or @{Name = "tagName"; Value = "tagValue"}. /// - internal static string NBA_NameAvailability { + internal static string InvalidTagFormat { get { - return ResourceManager.GetString("NBA_NameAvailability", resourceCulture); + return ResourceManager.GetString("InvalidTagFormat", resourceCulture); } } /// - /// Looks up a localized string similar to Creating job {0}. + /// Looks up a localized string similar to Invalid tag format. Ensure that each tag has a unique name. Example: @{Name = "tagName1"; Value = "tagValue1"}, @{Name = "tagName2"; Value = "tagValue2"}. /// - internal static string NBJ_CreatingJob { + internal static string InvalidTagFormatNotUniqueName { get { - return ResourceManager.GetString("NBJ_CreatingJob", resourceCulture); + return ResourceManager.GetString("InvalidTagFormatNotUniqueName", resourceCulture); } } /// - /// Looks up a localized string similar to Creating job schedule {0}. + /// Looks up a localized string similar to The current KeyInUse on this BatchAccountContext is the {0} key, but this key is not populated on the BatchAccountContext object. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its keys populated.. /// - internal static string NBJS_CreatingJobSchedule { + internal static string KeyNotPresent { get { - return ResourceManager.GetString("NBJS_CreatingJobSchedule", resourceCulture); + return ResourceManager.GetString("KeyNotPresent", resourceCulture); } } /// - /// Looks up a localized string similar to Creating pool {0}. + /// Looks up a localized string similar to Checking if account already exists. /// - internal static string NBP_CreatingPool { + internal static string LookupAccount { get { - return ResourceManager.GetString("NBP_CreatingPool", resourceCulture); + return ResourceManager.GetString("LookupAccount", resourceCulture); } } /// - /// Looks up a localized string similar to Creating task {0}. + /// Looks up a localized string similar to A max count of {0} will be returned.. /// - internal static string NBT_CreatingTask { + internal static string MaxCount { get { - return ResourceManager.GetString("NBT_CreatingTask", resourceCulture); + return ResourceManager.GetString("MaxCount", resourceCulture); } } /// - /// Looks up a localized string similar to Creating user {0} on compute node {1}. + /// Looks up a localized string similar to Cannot find resource group name in ID property: {0}. /// - internal static string NBU_CreatingUser { + internal static string MissingResGroupName { get { - return ResourceManager.GetString("NBU_CreatingUser", resourceCulture); + return ResourceManager.GetString("MissingResGroupName", resourceCulture); } } @@ -637,128 +628,128 @@ internal static string NoTask { } /// - /// Looks up a localized string similar to Are you sure you want to remove batch account {0}?. + /// Looks up a localized string similar to Rebooting compute node {0}.. /// - internal static string RBA_RemoveConfirm { + internal static string RebootComputeNode { get { - return ResourceManager.GetString("RBA_RemoveConfirm", resourceCulture); + return ResourceManager.GetString("RebootComputeNode", resourceCulture); } } /// - /// Looks up a localized string similar to Removing batch account .... + /// Looks up a localized string similar to Reimaging compute node {0}.. /// - internal static string RBA_RemoveResource { + internal static string ReimageComputeNode { get { - return ResourceManager.GetString("RBA_RemoveResource", resourceCulture); + return ResourceManager.GetString("ReimageComputeNode", resourceCulture); } } /// - /// Looks up a localized string similar to Are you sure you want to remove job {0}?. + /// Looks up a localized string similar to Are you sure you want to remove batch account {0}?. /// - internal static string RBJ_RemoveConfirm { + internal static string RemoveAccountConfirm { get { - return ResourceManager.GetString("RBJ_RemoveConfirm", resourceCulture); + return ResourceManager.GetString("RemoveAccountConfirm", resourceCulture); } } /// - /// Looks up a localized string similar to Removing job .... + /// Looks up a localized string similar to Removing batch account .... /// - internal static string RBJ_RemoveJob { + internal static string RemoveBatchAccount { get { - return ResourceManager.GetString("RBJ_RemoveJob", resourceCulture); + return ResourceManager.GetString("RemoveBatchAccount", resourceCulture); } } /// - /// Looks up a localized string similar to Are you sure you want to remove job schedule {0}?. + /// Looks up a localized string similar to Removing user .... /// - internal static string RBJS_RemoveConfirm { + internal static string RemoveComputeNodeUser { get { - return ResourceManager.GetString("RBJS_RemoveConfirm", resourceCulture); + return ResourceManager.GetString("RemoveComputeNodeUser", resourceCulture); } } /// - /// Looks up a localized string similar to Removing job schedule .... + /// Looks up a localized string similar to Are you sure you want to remove user {0}?. /// - internal static string RBJS_RemoveJobSchedule { + internal static string RemoveComputeNodeUserConfirm { get { - return ResourceManager.GetString("RBJS_RemoveJobSchedule", resourceCulture); + return ResourceManager.GetString("RemoveComputeNodeUserConfirm", resourceCulture); } } /// - /// Looks up a localized string similar to Are you sure you want to remove pool {0}?. + /// Looks up a localized string similar to Removing job .... /// - internal static string RBP_RemoveConfirm { + internal static string RemoveJob { get { - return ResourceManager.GetString("RBP_RemoveConfirm", resourceCulture); + return ResourceManager.GetString("RemoveJob", resourceCulture); } } /// - /// Looks up a localized string similar to Removing pool .... + /// Looks up a localized string similar to Are you sure you want to remove job {0}?. /// - internal static string RBP_RemovePool { + internal static string RemoveJobConfirm { get { - return ResourceManager.GetString("RBP_RemovePool", resourceCulture); + return ResourceManager.GetString("RemoveJobConfirm", resourceCulture); } } /// - /// Looks up a localized string similar to Are you sure you want to remove task {0}?. + /// Looks up a localized string similar to Removing job schedule .... /// - internal static string RBT_RemoveConfirm { + internal static string RemoveJobSchedule { get { - return ResourceManager.GetString("RBT_RemoveConfirm", resourceCulture); + return ResourceManager.GetString("RemoveJobSchedule", resourceCulture); } } /// - /// Looks up a localized string similar to Removing task .... + /// Looks up a localized string similar to Are you sure you want to remove job schedule {0}?. /// - internal static string RBT_RemoveTask { + internal static string RemoveJobScheduleConfirm { get { - return ResourceManager.GetString("RBT_RemoveTask", resourceCulture); + return ResourceManager.GetString("RemoveJobScheduleConfirm", resourceCulture); } } /// - /// Looks up a localized string similar to Are you sure you want to remove user {0}?. + /// Looks up a localized string similar to Removing pool .... /// - internal static string RBU_RemoveConfirm { + internal static string RemovePool { get { - return ResourceManager.GetString("RBU_RemoveConfirm", resourceCulture); + return ResourceManager.GetString("RemovePool", resourceCulture); } } /// - /// Looks up a localized string similar to Removing user .... + /// Looks up a localized string similar to Are you sure you want to remove pool {0}?. /// - internal static string RBU_RemoveUser { + internal static string RemovePoolConfirm { get { - return ResourceManager.GetString("RBU_RemoveUser", resourceCulture); + return ResourceManager.GetString("RemovePoolConfirm", resourceCulture); } } /// - /// Looks up a localized string similar to Rebooting compute node {0}.. + /// Looks up a localized string similar to Removing task .... /// - internal static string RebootComputeNode { + internal static string RemoveTask { get { - return ResourceManager.GetString("RebootComputeNode", resourceCulture); + return ResourceManager.GetString("RemoveTask", resourceCulture); } } /// - /// Looks up a localized string similar to Reimaging compute node {0}.. + /// Looks up a localized string similar to Are you sure you want to remove task {0}?. /// - internal static string ReimageComputeNode { + internal static string RemoveTaskConfirm { get { - return ResourceManager.GetString("ReimageComputeNode", resourceCulture); + return ResourceManager.GetString("RemoveTaskConfirm", resourceCulture); } } @@ -772,38 +763,29 @@ internal static string ResGroupLookup { } /// - /// Looks up a localized string similar to ResourceNotFound: Resource not found.. - /// - internal static string ResourceNotFound { - get { - return ResourceManager.GetString("ResourceNotFound", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Updating account {0}. + /// Looks up a localized string similar to Resizing pool {0}, new target dedicated: {1}.. /// - internal static string SBA_Updating { + internal static string ResizingPool { get { - return ResourceManager.GetString("SBA_Updating", resourceCulture); + return ResourceManager.GetString("ResizingPool", resourceCulture); } } /// - /// Looks up a localized string similar to Resizing pool {0}, new target dedicated: {1}.. + /// Looks up a localized string similar to ResourceNotFound: Resource not found.. /// - internal static string SBPR_ResizingPool { + internal static string ResourceNotFound { get { - return ResourceManager.GetString("SBPR_ResizingPool", resourceCulture); + return ResourceManager.GetString("ResourceNotFound", resourceCulture); } } /// /// Looks up a localized string similar to Stopping resize operation on pool {0}.. /// - internal static string SBPR_StopResizingPool { + internal static string StopResizingPool { get { - return ResourceManager.GetString("SBPR_StopResizingPool", resourceCulture); + return ResourceManager.GetString("StopResizingPool", resourceCulture); } } @@ -833,5 +815,14 @@ internal static string TerminateTask { return ResourceManager.GetString("TerminateTask", resourceCulture); } } + + /// + /// Looks up a localized string similar to Updating account {0}. + /// + internal static string UpdatingAccount { + get { + return ResourceManager.GetString("UpdatingAccount", resourceCulture); + } + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx index 48f631cd23a2..5e7a2083d568 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx @@ -117,6 +117,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + AccountAlreadyExists: Account already exists. + Executing cmdlet with Batch account {0} with its {1} key. To change which key to use, set the KeyInUse property on the BatchAccountContext. @@ -126,6 +129,24 @@ Changing OS version of pool {0} to {1}. + + Performing name availability check for account {0} + + + Creating user {0} on compute node {1} + + + Creating job {0} + + + Creating job schedule {0} + + + Creating pool {0} + + + Creating task {0} + Disabling automatic scaling on pool {0}. @@ -135,6 +156,12 @@ Disabling job schedule {0}. + + Downloading node file {0} to: {1} + + + Downloading Remote Desktop Protocol file for compute node {0} to: {1} + Enabling automatic scaling on pool {0} using the formula: {1} @@ -150,92 +177,83 @@ Evaluating the following autoscale formula on pool {0}: {1} - - Getting account keys for {0} - - + Getting all accounts in subscription - - Getting accounts in resource group {0} - - - Getting node file "{0}" from compute node "{1}" - - - Getting node files matching the specified OData filter from compute node "{0}". - - - Getting all node files from compute node "{0}". - - + Getting compute node "{0}" from pool "{1}". - + Getting compute nodes matching the specified OData filter from pool "{0}". - + Getting all compute nodes under pool "{0}". - - Getting job schedule "{0}" - - - Getting job schedules matching the specified OData filter. - - - Getting all job schedules associated with the Batch account. - - + Getting job "{0}" - + Getting all jobs from job schedule "{0}". - + Getting jobs matching the specified OData filter. - + Getting jobs matching the specified OData filter from job schedule "{0}". - + Getting all jobs associated with the Batch account. - - Downloading node file {0} to: {1} + + Getting job schedule "{0}" - - Getting pool "{0}" + + Getting job schedules matching the specified OData filter. - - Getting pools matching the specified OData filter. + + Getting all job schedules associated with the Batch account. - - Getting all pools associated with the Batch account. + + Getting node file "{0}" from compute node "{1}" - - Downloading Remote Desktop Protocol file for compute node {0} to: {1} + + Getting node files matching the specified OData filter from compute node "{0}". + + + Getting all node files from compute node "{0}". - + Getting node file "{0}" from task "{1}" - + Getting node files matching the specified OData filter from task "{0}". - + Getting all node files under task "{0}". - + + Getting pool "{0}" + + + Getting pools matching the specified OData filter. + + + Getting all pools associated with the Batch account. + + + Getting accounts in resource group {0} + + Getting task "{0}" from job "{1}" - + Getting tasks matching the specified OData filter from job "{0}". - + Getting all tasks from job "{0}". - - No compute node was specified. Supply a PSComputeNode object or a pool id and compute node id for the Remote Desktop Protocol file to point to. + + Getting account keys for {0} The endpoint is not recognized as valid: {0} @@ -252,36 +270,15 @@ The current KeyInUse on this BatchAccountContext is the {0} key, but this key is not populated on the BatchAccountContext object. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its keys populated. + + Checking if account already exists + A max count of {0} will be returned. Cannot find resource group name in ID property: {0} - - AccountAlreadyExists: Account already exists. - - - Checking if account already exists - - - Performing name availability check for account {0} - - - Creating job schedule {0} - - - Creating job {0} - - - Creating pool {0} - - - Creating task {0} - - - Creating user {0} on compute node {1} - No compute node was specified. Supply a PSComputeNode object or a pool id and compute node id. @@ -309,62 +306,59 @@ No task was specified. Supply a PSCloudTask object or a job id and task id. - + + Rebooting compute node {0}. + + + Reimaging compute node {0}. + + Are you sure you want to remove batch account {0}? - + Removing batch account ... - - Are you sure you want to remove job schedule {0}? + + Removing user ... - - Removing job schedule ... + + Are you sure you want to remove user {0}? + + + Removing job ... - + Are you sure you want to remove job {0}? - - Removing job ... + + Removing job schedule ... - - Are you sure you want to remove pool {0}? + + Are you sure you want to remove job schedule {0}? - + Removing pool ... - - Are you sure you want to remove task {0}? + + Are you sure you want to remove pool {0}? - + Removing task ... - - Are you sure you want to remove user {0}? - - - Removing user ... - - - Rebooting compute node {0}. - - - Reimaging compute node {0}. + + Are you sure you want to remove task {0}? Looking up resource group for account {0} + + Resizing pool {0}, new target dedicated: {1}. + ResourceNotFound: Resource not found. emulate exception generated by RP - - Updating account {0} - - - Resizing pool {0}, new target dedicated: {1}. - - + Stopping resize operation on pool {0}. @@ -376,4 +370,7 @@ Terminating task {0}. + + Updating account {0} + \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs index 4643a8a522c4..ff4d66a57f7e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs @@ -47,8 +47,8 @@ public override void ExecuteCmdlet() ConfirmAction( Force.IsPresent, - string.Format(Resources.RBT_RemoveConfirm, taskId), - Resources.RBT_RemoveTask, + string.Format(Resources.RemoveTaskConfirm, taskId), + Resources.RemoveTask, taskId, () => BatchClient.DeleteTask(parameters)); } From 7c843ff24fe98f2f48870b12c8955b9b672d6bd5 Mon Sep 17 00:00:00 2001 From: jasper-schneider Date: Tue, 1 Sep 2015 10:41:15 -0700 Subject: [PATCH 27/58] Put long attribute definitions on multiple lines --- .../Accounts/GetBatchAccountCommand.cs | 6 ++-- .../Accounts/GetBatchAccountKeysCommand.cs | 8 ++--- .../Accounts/NewBatchAccountCommand.cs | 11 ++++--- .../Accounts/NewBatchAccountKeyCommand.cs | 13 +++----- .../Accounts/RemoveBatchAccountCommand.cs | 7 ++-- .../Accounts/SetBatchAccountCommand.cs | 8 +++-- .../NewBatchComputeNodeUserCommand.cs | 9 +++-- .../RemoveBatchComputeNodeUserCommand.cs | 9 +++-- .../GetBatchComputeNodeCommand.cs | 9 +++-- .../ResetBatchComputeNodeCommand.cs | 6 ++-- .../RestartBatchComputeNodeCommand.cs | 6 ++-- .../Files/GetBatchNodeFileCommand.cs | 27 ++++++++++----- .../Files/GetBatchNodeFileContentCommand.cs | 33 ++++++++++++------- ...etBatchRemoteDesktopProtocolFileCommand.cs | 24 +++++++++----- .../DisableBatchJobScheduleCommand.cs | 3 +- .../EnableBatchJobScheduleCommand.cs | 3 +- .../GetBatchJobScheduleCommand.cs | 6 ++-- .../NewBatchJobScheduleCommand.cs | 3 +- .../RemoveBatchJobScheduleCommand.cs | 3 +- .../StopBatchJobScheduleCommand.cs | 3 +- .../Jobs/DisableBatchJobCommand.cs | 6 ++-- .../Jobs/EnableBatchJobCommand.cs | 3 +- .../Commands.Batch/Jobs/GetBatchJobCommand.cs | 3 +- .../Commands.Batch/Jobs/NewBatchJobCommand.cs | 3 +- .../Jobs/RemoveBatchJobCommand.cs | 3 +- .../Jobs/StopBatchJobCommand.cs | 3 +- .../Pools/DisableBatchAutoScaleCommand.cs | 3 +- .../Pools/EnableBatchAutoScaleCommand.cs | 6 ++-- .../Pools/GetBatchPoolCommand.cs | 6 ++-- .../Pools/NewBatchPoolCommand.cs | 3 +- .../Pools/RemoveBatchPoolCommand.cs | 3 +- .../Pools/SetBatchPoolOSVersionCommand.cs | 6 ++-- .../Pools/StartBatchPoolResizeCommand.cs | 3 +- .../Pools/StopBatchPoolResizeCommand.cs | 3 +- .../Pools/TestBatchAutoScaleCommand.cs | 3 +- .../Tasks/GetBatchTaskCommand.cs | 9 +++-- .../Tasks/NewBatchTaskCommand.cs | 3 +- .../Tasks/RemoveBatchTaskCommand.cs | 9 +++-- .../Tasks/StopBatchTaskCommand.cs | 9 +++-- 39 files changed, 181 insertions(+), 103 deletions(-) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs index 51510547df3a..ad693e7caa18 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs @@ -22,15 +22,15 @@ namespace Microsoft.Azure.Commands.Batch public class GetBatchAccountCommand : BatchCmdletBase { [Alias("Name")] - [Parameter(Position = 0, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to query.")] + [Parameter(Position = 0, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string AccountName { get; set; } - [Parameter(Position = 1, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group associated with the account being queried.")] + [Parameter(Position = 1, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } - [Parameter(Position = 2, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Filter list of accounts using the key and optional value of the specified tag.")] + [Parameter(Position = 2, ValueFromPipelineByPropertyName = true)] public Hashtable Tag { get; set; } public override void ExecuteCmdlet() diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs index 6e1b9501c7d1..676c6c2b0216 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs @@ -20,15 +20,13 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Get, Constants.AzureBatchAccountKeys), OutputType(typeof(BatchAccountContext))] public class GetBatchAccountKeysCommand : BatchCmdletBase { - internal const string ParameterSetContext = "Use Context"; - internal const string ParameterSetNames = "Use Names"; - - [Parameter(ParameterSetName = ParameterSetNames, Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to query keys for.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the Batch service account to query keys for.")] [Alias("Name")] [ValidateNotNullOrEmpty] public string AccountName { get; set; } - [Parameter(ParameterSetName = ParameterSetNames, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group of the account.")] + [Parameter(ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs index 87f0db578925..b0e0396ad9ee 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs @@ -21,21 +21,24 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.New, Constants.AzureBatchAccount), OutputType(typeof(BatchAccountContext))] public class NewBatchAccountCommand : BatchCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to create.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the Batch service account to create.")] [Alias("Name")] [ValidateNotNullOrEmpty] public string AccountName { get; set; } - [Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The region where the account will be created.")] + [Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The region where the account will be created.")] [ValidateNotNullOrEmpty] public string Location { get; set; } - [Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the resource group where the account will be created.")] + [Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the resource group where the account will be created.")] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } [Alias("Tags")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "An array of hashtables which represents account tags.")] + [Parameter(ValueFromPipelineByPropertyName = true)] public Hashtable[] Tag { get; set; } public override void ExecuteCmdlet() diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs index 88e1013c0020..36edb73ab963 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs @@ -21,21 +21,18 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.New, Constants.AzureBatchAccountKey), OutputType(typeof(BatchAccountContext))] public class RegenBatchAccountKeyCommand : BatchCmdletBase { - internal const string ParameterSetContext = "Use Context"; - internal const string ParameterSetCmdLine = "Use Command Line"; - - [Parameter(ParameterSetName = ParameterSetCmdLine, Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to regenerate the specified key for.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the Batch service account to regenerate the specified key for.")] [Alias("Name")] [ValidateNotNullOrEmpty] public string AccountName { get; set; } - [Parameter(ParameterSetName = ParameterSetCmdLine, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group of the account.")] + [Parameter(ValueFromPipelineByPropertyName = true)] public string ResourceGroupName { get; set; } private AccountKeyType keyType; - //[Parameter(ParameterSetName = ParameterSetContext, Mandatory = true, ValueFromPipeline = false, - // HelpMessage = "The type of key (primary or secondary) to regenerate.")] - [Parameter(ParameterSetName = ParameterSetCmdLine, Mandatory = true, ValueFromPipeline = false, HelpMessage = "The type of key (primary or secondary) to regenerate.")] + [Parameter(Mandatory = true, ValueFromPipeline = false, + HelpMessage = "The type of key (primary or secondary) to regenerate.")] [ValidateSet("Primary", "Secondary")] public string KeyType { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs index 5b117cbe6fb5..6dd65bd19f15 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs @@ -23,16 +23,17 @@ public class RemoveBatchAccountCommand : BatchCmdletBase { private static string mamlCall = "RemoveAccount"; - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to remove.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the Batch service account to remove.")] [Alias("Name")] [ValidateNotNullOrEmpty] public string AccountName { get; set; } - [Parameter(Position = 1, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group of the account being removed.")] + [Parameter(Position = 1, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } - [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + [Parameter] public SwitchParameter Force { get; set; } public override void ExecuteCmdlet() diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs index 88e5c8193740..7835e9a08fdb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs @@ -21,16 +21,18 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Set, Constants.AzureBatchAccount), OutputType(typeof(BatchAccountContext))] public class SetBatchAccountCommand : BatchCmdletBase { - [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to update.")] + [Parameter(Mandatory = true, Position = 0, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the Batch service account to update.")] [Alias("Name")] [ValidateNotNullOrEmpty] public string AccountName { get; set; } [Alias("Tags")] - [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, HelpMessage = "An array of hashtables which represents the tags to set on the account.")] + [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, + HelpMessage = "An array of hashtables which represents the tags to set on the account.")] public Hashtable[] Tag { get; set; } - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group of the account being updated.")] + [Parameter(ValueFromPipelineByPropertyName = true)] public string ResourceGroupName { get; set; } public override void ExecuteCmdlet() diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs index e7f880a8db16..d9a167cb0669 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs @@ -24,15 +24,18 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.New, Constants.AzureBatchComputeNodeUser)] public class NewBatchComputeNodeUserCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the pool containing the compute node to create the user on.")] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the pool containing the compute node to create the user on.")] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the compute node to create the user on.")] + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the compute node to create the user on.")] [ValidateNotNullOrEmpty] public string ComputeNodeId { get; set; } - [Parameter(Position = 0, ParameterSetName = Constants.ParentObjectParameterSet, ValueFromPipeline = true)] + [Parameter(Position = 0, ParameterSetName = Constants.ParentObjectParameterSet, + ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public PSComputeNode ComputeNode { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs index 053eb3a16a3c..56d80e93cc91 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs @@ -24,15 +24,18 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Remove, Constants.AzureBatchComputeNodeUser)] public class RemoveBatchComputeNodeUserCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool that contains the compute node.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the pool that contains the compute node.")] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node that contains the user.")] + [Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the compute node that contains the user.")] [ValidateNotNullOrEmpty] public string ComputeNodeId { get; set; } - [Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the compute node user to delete.")] + [Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the compute node user to delete.")] [ValidateNotNullOrEmpty] public string Name { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs index 2bc4d9660c12..9ae7309bcd82 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs @@ -20,13 +20,16 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, Constants.AzureBatchComputeNode, DefaultParameterSetName = Constants.ODataFilterParameterSet), OutputType(typeof(PSComputeNode))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchComputeNode, DefaultParameterSetName = Constants.ODataFilterParameterSet), + OutputType(typeof(PSComputeNode))] public class GetBatchComputeNodeCommand : BatchObjectModelCmdletBase { private int maxCount = Constants.DefaultMaxCount; - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool.")] - [Parameter(ParameterSetName = Constants.ODataFilterParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool.")] + [Parameter(ParameterSetName = Constants.ODataFilterParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string PoolId { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs index 64e008d7c884..00904c110627 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs @@ -24,11 +24,13 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Reset, Constants.AzureBatchComputeNode, DefaultParameterSetName = Constants.IdParameterSet)] public class ResetBatchComputeNodeCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the pool that contains the compute node.")] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the pool that contains the compute node.")] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the compute node to reimage.")] + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the compute node to reimage.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs index 0688865951b6..1ab544480f88 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs @@ -24,11 +24,13 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Restart, Constants.AzureBatchComputeNode, DefaultParameterSetName = Constants.IdParameterSet)] public class RestartBatchComputeNodeCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the pool that contains the compute node.")] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the pool that contains the compute node.")] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the compute node to reboot.")] + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the compute node to reboot.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs index 6d7d9a5cdb62..2a7c457d1a91 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs @@ -22,7 +22,8 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, Constants.AzureBatchNodeFile, DefaultParameterSetName = ComputeNodeAndIdParameterSet), OutputType(typeof(PSNodeFile))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchNodeFile, DefaultParameterSetName = ComputeNodeAndIdParameterSet), + OutputType(typeof(PSNodeFile))] public class GetBatchNodeFileCommand : BatchObjectModelCmdletBase { internal const string TaskAndIdParameterSet = "Task_Id"; @@ -34,13 +35,17 @@ public class GetBatchNodeFileCommand : BatchObjectModelCmdletBase private int maxCount = Constants.DefaultMaxCount; - [Parameter(ParameterSetName = TaskAndIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the specified target task.")] - [Parameter(ParameterSetName = TaskAndODataParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(ParameterSetName = TaskAndIdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the specified target task.")] + [Parameter(ParameterSetName = TaskAndODataParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string JobId { get; set; } - [Parameter(ParameterSetName = TaskAndIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task.")] - [Parameter(ParameterSetName = TaskAndODataParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(ParameterSetName = TaskAndIdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task.")] + [Parameter(ParameterSetName = TaskAndODataParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string TaskId { get; set; } @@ -48,13 +53,17 @@ public class GetBatchNodeFileCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public PSCloudTask Task { get; set; } - [Parameter(Position = 0, ParameterSetName = ComputeNodeAndIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool which contains the specified target compute node.")] - [Parameter(Position = 0, ParameterSetName = ComputeNodeAndODataParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = ComputeNodeAndIdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool which contains the specified target compute node.")] + [Parameter(Position = 0, ParameterSetName = ComputeNodeAndODataParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, ParameterSetName = ComputeNodeAndIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node.")] - [Parameter(Position = 1, ParameterSetName = ComputeNodeAndODataParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 1, ParameterSetName = ComputeNodeAndIdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node.")] + [Parameter(Position = 1, ParameterSetName = ComputeNodeAndODataParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string ComputeNodeId { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs index 22f29cfbe42b..e5167a34f50f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs @@ -29,27 +29,36 @@ public class GetBatchNodeFileContentCommand : BatchObjectModelCmdletBase internal const string ComputeNodeAndIdAndPathParameterSet = "ComputeNode_Id_Path"; internal const string ComputeNodeAndIdAndStreamParameterSet = "ComputeNode_Id_Stream"; - [Parameter(ParameterSetName = TaskAndIdAndPathParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the target task.")] - [Parameter(ParameterSetName = TaskAndIdAndStreamParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(ParameterSetName = TaskAndIdAndPathParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the target task.")] + [Parameter(ParameterSetName = TaskAndIdAndStreamParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string JobId { get; set; } - [Parameter(ParameterSetName = TaskAndIdAndPathParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task.")] - [Parameter(ParameterSetName = TaskAndIdAndStreamParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(ParameterSetName = TaskAndIdAndPathParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task.")] + [Parameter(ParameterSetName = TaskAndIdAndStreamParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string TaskId { get; set; } - [Parameter(Position = 0, ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool containing the compute node.")] - [Parameter(Position = 0, ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool containing the compute node.")] + [Parameter(Position = 0, ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node.")] - [Parameter(Position = 1, ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 1, ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node.")] + [Parameter(Position = 1, ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string ComputeNodeId { get; set; } - [Parameter(Position = 2, ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, HelpMessage = "The name of the node file to download.")] + [Parameter(Position = 2, ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, + HelpMessage = "The name of the node file to download.")] [Parameter(Position = 2, ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true)] [Parameter(ParameterSetName = TaskAndIdAndPathParameterSet, Mandatory = true)] [Parameter(ParameterSetName = TaskAndIdAndStreamParameterSet, Mandatory = true)] @@ -61,13 +70,15 @@ public class GetBatchNodeFileContentCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public PSNodeFile InputObject { get; set; } - [Parameter(ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, HelpMessage = "The file path where the node file will be downloaded.")] + [Parameter(ParameterSetName = ComputeNodeAndIdAndPathParameterSet, Mandatory = true, + HelpMessage = "The file path where the node file will be downloaded.")] [Parameter(ParameterSetName = TaskAndIdAndPathParameterSet, Mandatory = true)] [Parameter(ParameterSetName = Constants.InputObjectAndPathParameterSet, Mandatory = true)] [ValidateNotNullOrEmpty] public string DestinationPath { get; set; } - [Parameter(ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true, HelpMessage = "The Stream into which the node file contents will be written. This stream will not be closed or rewound by this call.")] + [Parameter(ParameterSetName = ComputeNodeAndIdAndStreamParameterSet, Mandatory = true, + HelpMessage = "The Stream into which the node file contents will be written. This stream will not be closed or rewound by this call.")] [Parameter(ParameterSetName = TaskAndIdAndStreamParameterSet, Mandatory = true)] [Parameter(ParameterSetName = Constants.InputObjectAndStreamParameterSet, Mandatory = true)] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs index fe797cb00746..7ba3c57a88cb 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs @@ -27,27 +27,35 @@ public class GetBatchRemoteDesktopProtocolFileCommand : BatchObjectModelCmdletBa internal const string IdAndPathParameterSet = "Id_Path"; internal const string IdAndStreamParameterSet = "Id_Stream"; - [Parameter(Position = 0, ParameterSetName = IdAndPathParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool which contains the compute node.")] - [Parameter(Position = 0, ParameterSetName = IdAndStreamParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = IdAndPathParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool which contains the compute node.")] + [Parameter(Position = 0, ParameterSetName = IdAndStreamParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string PoolId { get; set; } - [Parameter(Position = 1, ParameterSetName = IdAndPathParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node to which the Remote Desktop Protocol file will point.")] - [Parameter(Position = 1, ParameterSetName = IdAndStreamParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 1, ParameterSetName = IdAndPathParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node to which the Remote Desktop Protocol file will point.")] + [Parameter(Position = 1, ParameterSetName = IdAndStreamParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string ComputeNodeId { get; set; } - [Parameter(Position = 0, ParameterSetName = Constants.InputObjectAndPathParameterSet, ValueFromPipeline = true)] - [Parameter(Position = 0, ParameterSetName = Constants.InputObjectAndStreamParameterSet, ValueFromPipeline = true)] + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectAndPathParameterSet, + ValueFromPipeline = true)] + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectAndStreamParameterSet, + ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public PSComputeNode ComputeNode { get; set; } - [Parameter(ParameterSetName = IdAndPathParameterSet, Mandatory = true, HelpMessage = "The file path where the Remote Desktop Protocol file will be downloaded.")] + [Parameter(ParameterSetName = IdAndPathParameterSet, Mandatory = true, + HelpMessage = "The file path where the Remote Desktop Protocol file will be downloaded.")] [Parameter(ParameterSetName = Constants.InputObjectAndPathParameterSet, Mandatory = true)] [ValidateNotNullOrEmpty] public string DestinationPath { get; set; } - [Parameter(ParameterSetName = IdAndStreamParameterSet, Mandatory = true, HelpMessage = "The Stream into which the Remote Desktop Protocol file data will be written. This stream will not be closed or rewound by this call.")] + [Parameter(ParameterSetName = IdAndStreamParameterSet, Mandatory = true, + HelpMessage = "The Stream into which the Remote Desktop Protocol file data will be written. This stream will not be closed or rewound by this call.")] [Parameter(ParameterSetName = Constants.InputObjectAndStreamParameterSet, Mandatory = true)] [ValidateNotNullOrEmpty] public Stream DestinationStream { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs index b4b44d2b0fb5..6e83e916bfb2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Disable, Constants.AzureBatchJobSchedule)] public class DisableBatchJobScheduleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job schedule to disable.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the job schedule to disable.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs index e2b4298bd8ea..5b9efbc04fa8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Enable, Constants.AzureBatchJobSchedule)] public class EnableBatchJobScheduleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job schedule to enable.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the job schedule to enable.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs index 4fd7807634c9..ddeada105e5c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs @@ -20,12 +20,14 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, Constants.AzureBatchJobSchedule, DefaultParameterSetName = Constants.ODataFilterParameterSet), OutputType(typeof(PSCloudJobSchedule))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchJobSchedule, DefaultParameterSetName = Constants.ODataFilterParameterSet), + OutputType(typeof(PSCloudJobSchedule))] public class GetBatchJobScheduleCommand : BatchObjectModelCmdletBase { private int maxCount = Constants.DefaultMaxCount; - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs index 8d07e87d9756..051be99a274f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs @@ -23,7 +23,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.New, Constants.AzureBatchJobSchedule)] public class NewBatchJobScheduleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job schedule to create.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the job schedule to create.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs index 5a927afbb575..9e4613ff1689 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Remove, Constants.AzureBatchJobSchedule)] public class RemoveBatchJobScheduleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job schedule to delete.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the job schedule to delete.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs index 4cdeaa45b1d4..0bf7905bc369 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/StopBatchJobScheduleCommand.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchJobSchedule)] public class StopBatchJobScheduleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job schedule to terminate.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the job schedule to terminate.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs index f7b4b55e0dac..9313b5dda8e1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs @@ -23,11 +23,13 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Disable, Constants.AzureBatchJob)] public class DisableBatchJobCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job to disable.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the job to disable.")] [ValidateNotNullOrEmpty] public string Id { get; set; } - [Parameter(Position = 1, Mandatory = true, HelpMessage = "Specifies what to do with active tasks associated with the job.")] + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "Specifies what to do with active tasks associated with the job.")] public DisableJobOption DisableJobOption { get; set; } public override void ExecuteCmdlet() diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs index 7f5ffe1ee6c7..dfa523dd9513 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Enable, Constants.AzureBatchJob)] public class EnableBatchJobCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job to enable.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the job to enable.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs index b5c47303ff95..8216efe61393 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs @@ -20,7 +20,8 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, Constants.AzureBatchJob, DefaultParameterSetName = Constants.ODataFilterParameterSet), OutputType(typeof(PSCloudJob))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchJob, DefaultParameterSetName = Constants.ODataFilterParameterSet), + OutputType(typeof(PSCloudJob))] public class GetBatchJobCommand : BatchObjectModelCmdletBase { private int maxCount = Constants.DefaultMaxCount; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs index 9f754e2224ea..12c694f5ad28 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs @@ -23,7 +23,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.New, Constants.AzureBatchJob)] public class NewBatchJobCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job to create.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the job to create.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs index aaa9514ce717..12a9068d1776 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs @@ -21,7 +21,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Remove, Constants.AzureBatchJob)] public class RemoveBatchJobCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job to delete.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the job to delete.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs index 6d405eb8353b..2c5b6f9b8c69 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/StopBatchJobCommand.cs @@ -22,7 +22,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchJob)] public class StopBatchJobCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the job to terminate.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the job to terminate.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs index fe966a6ee6c7..1f4718036e32 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs @@ -24,7 +24,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Disable, Constants.AzureBatchAutoScale)] public class DisableBatchAutoScaleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the pool to disable automatic scaling on.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the pool to disable automatic scaling on.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs index 392d3fee53ec..9e295ca675b4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs @@ -24,11 +24,13 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Enable, Constants.AzureBatchAutoScale)] public class EnableBatchAutoScaleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the pool to enable automatic scaling on.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the pool to enable automatic scaling on.")] [ValidateNotNullOrEmpty] public string Id { get; set; } - [Parameter(Position = 1, Mandatory = true, HelpMessage = "The formula for the desired number of compute nodes in the pool.")] + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "The formula for the desired number of compute nodes in the pool.")] [ValidateNotNullOrEmpty] public string AutoScaleFormula { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs index 1f6f9be73a65..11fa9199511c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs @@ -22,12 +22,14 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, Constants.AzureBatchPool, DefaultParameterSetName = Constants.ODataFilterParameterSet), OutputType(typeof(PSCloudPool))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchPool, DefaultParameterSetName = Constants.ODataFilterParameterSet), + OutputType(typeof(PSCloudPool))] public class GetBatchPoolCommand : BatchObjectModelCmdletBase { private int maxCount = Constants.DefaultMaxCount; - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs index d79d30d934c4..876486307c3f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs @@ -35,7 +35,8 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string VirtualMachineSize { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The Azure Guest OS family to be installed on the virtual machines in the pool.")] + [Parameter(Mandatory = true, + HelpMessage = "The Azure Guest OS family to be installed on the virtual machines in the pool.")] [ValidateNotNullOrEmpty] public string OSFamily { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs index d765b8f3f279..0c55dba0d35a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs @@ -24,7 +24,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Remove, Constants.AzureBatchPool)] public class RemoveBatchPoolCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool to delete.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The id of the pool to delete.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs index 70ed5c563bc9..4c32d4feb45b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs @@ -24,11 +24,13 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Set, Constants.AzureBatchPoolOSVersion)] public class SetBatchPoolOSVersionCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the pool.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the pool.")] [ValidateNotNullOrEmpty] public string Id { get; set; } - [Parameter(Position = 1, Mandatory = true, HelpMessage = "The Azure Guest OS version to be installed on the virtual machines in the pool.")] + [Parameter(Position = 1, Mandatory = true, + HelpMessage = "The Azure Guest OS version to be installed on the virtual machines in the pool.")] [ValidateNotNullOrEmpty] public string TargetOSVersion { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs index edd625f4179f..ff2a47210255 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs @@ -24,7 +24,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Start, Constants.AzureBatchPoolResize)] public class StartBatchPoolResizeCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the pool to resize.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the pool to resize.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs index fce95ea0841a..8df5e210ea81 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs @@ -20,7 +20,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchPoolResize)] public class StopBatchPoolResizeCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool.")] + [Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs index 75517c7ff7b2..3e100095444f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs @@ -24,7 +24,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsDiagnostic.Test, Constants.AzureBatchAutoScale)] public class TestBatchAutoScaleCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The id of the pool to evaluate the autoscale formula on.")] + [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, + Mandatory = true, HelpMessage = "The id of the pool to evaluate the autoscale formula on.")] [ValidateNotNullOrEmpty] public string Id { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs index 4ca3c609fea8..a3c0bdb0579e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs @@ -20,13 +20,16 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet(VerbsCommon.Get, Constants.AzureBatchTask, DefaultParameterSetName = Constants.ODataFilterParameterSet), OutputType(typeof(PSCloudTask))] + [Cmdlet(VerbsCommon.Get, Constants.AzureBatchTask, DefaultParameterSetName = Constants.ODataFilterParameterSet), + OutputType(typeof(PSCloudTask))] public class GetBatchTaskCommand : BatchObjectModelCmdletBase { private int maxCount = Constants.DefaultMaxCount; - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job which contains the tasks.")] - [Parameter(Position = 0, ParameterSetName = Constants.ODataFilterParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job which contains the tasks.")] + [Parameter(Position = 0, ParameterSetName = Constants.ODataFilterParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string JobId { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs index eb16280be27e..c71272fc45dc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs @@ -24,7 +24,8 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.New, Constants.AzureBatchTask)] public class NewBatchTaskCommand : BatchObjectModelCmdletBase { - [Parameter(ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the job to create the task under.")] + [Parameter(ParameterSetName = Constants.IdParameterSet, Mandatory = true, + HelpMessage = "The id of the job to create the task under.")] [ValidateNotNullOrEmpty] public string JobId { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs index ff4d66a57f7e..f2be29c9a98b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs @@ -24,15 +24,18 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsCommon.Remove, Constants.AzureBatchTask)] public class RemoveBatchTaskCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the task to delete.")] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the task to delete.")] [ValidateNotNullOrEmpty] public string JobId { get; set; } - [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task to delete.")] + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task to delete.")] [ValidateNotNullOrEmpty] public string Id { get; set; } - [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, Mandatory = true, ValueFromPipeline = true, HelpMessage = "The PSCloudTask object representing the task to delete.")] + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, Mandatory = true, + ValueFromPipeline = true, HelpMessage = "The PSCloudTask object representing the task to delete.")] [ValidateNotNullOrEmpty] public PSCloudTask InputObject { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs index cc2f156c964c..5a4149927182 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/StopBatchTaskCommand.cs @@ -22,15 +22,18 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet(VerbsLifecycle.Stop, Constants.AzureBatchTask)] public class StopBatchTaskCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the task to terminate.")] + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job containing the task to terminate.")] [ValidateNotNullOrEmpty] public string JobId { get; set; } - [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task to terminate.")] + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the task to terminate.")] [ValidateNotNullOrEmpty] public string Id { get; set; } - [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, Mandatory = true, ValueFromPipeline = true, HelpMessage = "The PSCloudTask object representing the task to terminate.")] + [Parameter(Position = 0, ParameterSetName = Constants.InputObjectParameterSet, Mandatory = true, + ValueFromPipeline = true, HelpMessage = "The PSCloudTask object representing the task to terminate.")] [ValidateNotNullOrEmpty] public PSCloudTask Task { get; set; } From 61d4ab93a6b097d1d3bdbbd1811cd27557b898d3 Mon Sep 17 00:00:00 2001 From: deepakswifty Date: Tue, 1 Sep 2015 16:38:51 -0700 Subject: [PATCH 28/58] update network help --- ...rosoft.Azure.Commands.Network.dll-Help.xml | 50872 +++++++++------- 1 file changed, 27850 insertions(+), 23022 deletions(-) diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml index 62c74e576a7e..a34a8faf479f 100644 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml +++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml @@ -1,23045 +1,27873 @@ - - - - - Add-AzureApplicationGatewayBackendAddressPool - - - - - - - Add - AzureApplicationGatewayBackendAddressPool - - - - - - - - Add-AzureApplicationGatewayBackendAddressPool - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - BackendIPConfigurationIds - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - Add-AzureApplicationGatewayBackendAddressPool - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - BackendIPAddresses - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - Add-AzureApplicationGatewayBackendAddressPool - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - BackendFqdns - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - BackendIPConfigurationIds - - - - List`1[String] - - List`1[String] - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendIPAddresses - - - - List`1[String] - - List`1[String] - - - - - - BackendFqdns - - - - List`1[String] - - List`1[String] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewayBackendHttpSettings - - - - - - - Add - AzureApplicationGatewayBackendHttpSettings - - - - - - - - Add-AzureApplicationGatewayBackendHttpSettings - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Port - - - - Int32 - - - Protocol - - - - String - - - CookieBasedAffinity - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - Port - - - - Int32 - - Int32 - - - - - - Protocol - - - - String - - String - - - - - - CookieBasedAffinity - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewayFrontendIPConfig - - - - - - - Add - AzureApplicationGatewayFrontendIPConfig - - - - - - - - Add-AzureApplicationGatewayFrontendIPConfig - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - PrivateIPAddress - - - - String - - - Subnet - - - - PSSubnet - - - PublicIPAddress - - - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - Add-AzureApplicationGatewayFrontendIPConfig - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - PrivateIPAddress - - - - String - - - SubnetId - - - - String - - - PublicIPAddressId - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - PrivateIPAddress - - - - String - - String - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - PublicIPAddress - - - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - SubnetId - - - - String - - String - - - - - - PublicIPAddressId - - - - String - - String - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewayFrontendPort - - - - - - - Add - AzureApplicationGatewayFrontendPort - - - - - - - - Add-AzureApplicationGatewayFrontendPort - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Port - - - - Int32 - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - Port - - - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewayHttpListener - - - - - - - Add - AzureApplicationGatewayHttpListener - - - - - - - - Add-AzureApplicationGatewayHttpListener - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - FrontendIPConfigurationId - - - - String - - - FrontendPortId - - - - String - - - SslCertificateId - - - - String - - - Protocol - - - - String - - - Profile - - - - AzureProfile - - - - Add-AzureApplicationGatewayHttpListener - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - FrontendIPConfiguration - - - - PSApplicationGatewayFrontendIPConfiguration - - - FrontendPort - - - - PSApplicationGatewayFrontendPort - - - SslCertificate - - - - PSApplicationGatewaySslCertificate - - - Protocol - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - FrontendIPConfigurationId - - - - String - - String - - - - - - FrontendPortId - - - - String - - String - - - - - - SslCertificateId - - - - String - - String - - - - - - Protocol - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIPConfiguration - - - - PSApplicationGatewayFrontendIPConfiguration - - PSApplicationGatewayFrontendIPConfiguration - - - - - - FrontendPort - - - - PSApplicationGatewayFrontendPort - - PSApplicationGatewayFrontendPort - - - - - - SslCertificate - - - - PSApplicationGatewaySslCertificate - - PSApplicationGatewaySslCertificate - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewayIPConfiguration - - - - - - - Add - AzureApplicationGatewayIPConfiguration - - - - - - - - Add-AzureApplicationGatewayIPConfiguration - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - SubnetId - - - - String - - - Profile - - - - AzureProfile - - - - Add-AzureApplicationGatewayIPConfiguration - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Subnet - - - - PSSubnet - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - SubnetId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewayRequestRoutingRule - - - - - - - Add - AzureApplicationGatewayRequestRoutingRule - - - - - - - - Add-AzureApplicationGatewayRequestRoutingRule - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - RuleType - - - - String - - - BackendHttpSettingsId - - - - String - - - HttpListenerId - - - - String - - - BackendAddressPoolId - - - - String - - - Profile - - - - AzureProfile - - - - Add-AzureApplicationGatewayRequestRoutingRule - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - RuleType - - - - String - - - BackendHttpSettings - - - - PSApplicationGatewayBackendHttpSettings - - - HttpListener - - - - PSApplicationGatewayHttpListener - - - BackendAddressPool - - - - PSApplicationGatewayBackendAddressPool - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - RuleType - - - - String - - String - - - - - - BackendHttpSettingsId - - - - String - - String - - - - - - HttpListenerId - - - - String - - String - - - - - - BackendAddressPoolId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendHttpSettings - - - - PSApplicationGatewayBackendHttpSettings - - PSApplicationGatewayBackendHttpSettings - - - - - - HttpListener - - - - PSApplicationGatewayHttpListener - - PSApplicationGatewayHttpListener - - - - - - BackendAddressPool - - - - PSApplicationGatewayBackendAddressPool - - PSApplicationGatewayBackendAddressPool - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureApplicationGatewaySslCertificate - - - - - - - Add - AzureApplicationGatewaySslCertificate - - - - - - - - Add-AzureApplicationGatewaySslCertificate - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - CertificateFile - - - - String - - - Password - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - CertificateFile - - - - String - - String - - - - - - Password - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureLoadBalancerBackendAddressPoolConfig - - Add a new Backend Address Pool for an Azure Load Balancer - - - - - Add - AzureLoadBalancerBackendAddressPoolConfig - - - - Add a new Backend Address Pool for an Azure Load Balancer - - - - Add-AzureLoadBalancerBackendAddressPoolConfig - - Name - - The name of the Backend Address Pool. - - String - - - LoadBalancer - - The Load Balancer in which this Backend Address Pool will be created. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Backend Address Pool. - - String - - String - - - - - - LoadBalancer - - The Load Balancer in which this Backend Address Pool will be created. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendIpConfigurationId - - A list of Backend Ip Config Id's to associate with this Backend Address Pool. - - list`1[string] - - list`1[string] - - - - - - BackendIpConfiguration - - A list of Backend Ips to associate with this Backend Address Pool. - - list`1[psnetworkinterfaceipconfiguration] - - list`1[psnetworkinterfaceipconfiguration] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\> $nic = Get-AzureNetworkInterface -name "myNic" -ResourceGroupName "myrg" + + + + + + Add-AzureApplicationGatewayBackendAddressPool + + Adds a back-end address pool to an application gateway. + + + + + Add + AzureApplicationGatewayBackendAddressPool + + + + The Add-AzureApplicationGatewayBackendAddressPool cmdlet adds a back-end address pool to an application gateway. A back-end address can be specified using an IP address, a fully-qualified domain name (FQDN) or IP configuration IDs. + + + + Add-AzureApplicationGatewayBackendAddressPool + + BackendIPConfigurationIds + + Specifies a list of back-end server IP configuration IDs that this cmdlet adds as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end server pool that this cmdlet adds. + + String + + + + Add-AzureApplicationGatewayBackendAddressPool + + BackendIPAddresses + + Specifies a list of back-end IP addresses which this cmdlet adds as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end server pool that this cmdlet adds. + + String + + + + Add-AzureApplicationGatewayBackendAddressPool + + BackendFqdns + + Specifies a list of backend FQDNs which this cmdlet adds as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end server pool that this cmdlet adds. + + String + + + + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a back-end address pool. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + BackendFqdns + + Specifies a list of backend FQDNs which this cmdlet adds as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + BackendIPAddresses + + Specifies a list of back-end IP addresses which this cmdlet adds as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + BackendIPConfigurationIds + + Specifies a list of back-end server IP configuration IDs that this cmdlet adds as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + Name + + Specifies the name of the back-end server pool that this cmdlet adds. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + System.String + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Adding a back-end address pool by using a back-end server FQDN + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $AppGw +-Name "Pool02" -BackendFqdns "contoso1.com", " contoso1.com" - Get-AzureLoadBalander -Name "myLB" -ResourceGroupName "myrg" | Add-AzureLoadBalancerBackendAddressPoolConfig -Name $backendAddressPoolName2 -BackendIpConfiguration $nic.IpConfigurations[0] | Set-AzureLoadBalancer - - - - - - - - - - - - - - - - - - - - - - Add-AzureLoadBalancerFrontendIpConfig - - Add a new Frontend Ip for an Azure Load Balancer - - - - - Add - AzureLoadBalancerFrontendIpConfig - - - - Add a new Frontend Ip for an Azure Load Balancer - - - - Add-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip. - - String - - - LoadBalancer - - The Load Balancer in which this Frontend Ip will be created. - - PSLoadBalancer - - - PrivateIpAddress - - The Public Ip Address object to associate with this Frontend. - - String - - - SubnetId - - The Id of the Subnet in which this Frontend Ip will be created. - - String - - - PublicIpAddressId - - The Id of the Public Ip Address to associate with this Frontend Ip. - - String - - - Profile - - - - AzureProfile - - - - Add-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip. - - String - - - LoadBalancer - - The Load Balancer in which this Frontend Ip will be created. - - PSLoadBalancer - - - PrivateIpAddress - - The Public Ip Address object to associate with this Frontend. - - String - - - Subnet - - The Subnet object which this Frontend Ip will be created. - - PSSubnet - - - PublicIpAddress - - The Public Ip Address to associate with this Frontend Ip. - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Frontend Ip. - - String - - String - - - - - - LoadBalancer - - The Load Balancer in which this Frontend Ip will be created. - - PSLoadBalancer - - PSLoadBalancer - - - - - - PrivateIpAddress - - The Public Ip Address object to associate with this Frontend. - - String - - String - - - - - - SubnetId - - The Id of the Subnet in which this Frontend Ip will be created. - - String - - String - - - - - - PublicIpAddressId - - The Id of the Public Ip Address to associate with this Frontend Ip. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - The Subnet object which this Frontend Ip will be created. - - PSSubnet - - PSSubnet - - - - - - PublicIpAddress - - The Public Ip Address to associate with this Frontend Ip. - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\> $subnet = Get-AzureVirtualNetwork -Name "myVnet" -ResourceGroupName "myRg" | Get-AzureVirtualNetworkSubnetConfig -name "mysubnet" + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command adds the back-end address pool of the application gateway stored in $AppGw by using FQDNs. + + + + + + + + + + + Example 2: Adding a back-end address pool by using backend server IP addresses + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add -AzureApplicationGatewayBackendAddressPool -ApplicationGateway $ AppGw +-Name "Pool02" -BackendIPAddresses "10.10.10.10", "10.10.10.11" + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command adds the back-end address pool of the application gateway stored in $AppGw by using IP addresses. + + + + + + + + + + + Example 3: Setting a back-end address pool by using the ID of the backend server’s IP address + + + + + PS C:\>$Nic01 = Get-AzureNetworkInterface -Name "Nic01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Nic02 = Get-AzureNetworkInterface -Name "Nic02" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $ AppGw +-Name "Pool02" -BackendIPConfigurationIds $nic01.Properties.IpConfigurations[0].Id, $nic02.Properties.IpConfiguration[0].Id + + + The first command gets a network interface object named Nic01 that belongs to the resource group named ResourceGroup01, and stores it in the $Nic01 variable. + The second command gets a network interface object named Nic02 that belongs to the resource group named ResourceGroup02, and stores it in the $Nic02 variable. + The third command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The forth command uses the back-end IP configuration IDs from $Nic01 and $Nic02 to add the back-end address pool of the application gateway stored in $AppGw. + + + + + + + + + + + + + Get-AzureApplicationGatewayBackendAddressPool + + + + New-AzureApplicationGatewayBackendAddressPool + + + + Remove-AzureApplicationGatewayBackendAddressPool + + + + Set-AzureApplicationGatewayBackendAddressPool + + + + + + + Add-AzureApplicationGatewayBackendHttpSettings + + + + + + + + Add + AzureApplicationGatewayBackendHttpSettings + + + + Adds back-end HTTP settings to an application gateway. + + + + Add-AzureApplicationGatewayBackendHttpSettings + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + The Add-AzureApplicationGatewayBackendHttpSettings cmdlet adds back-end HTTP settings to an application gateway. + Back-end HTTP settings are applied to all back-end servers in the pool. + + PSApplicationGateway + + + CookieBasedAffinity + + Specifies whether cookie-based affinity should be enabled or disabled for the backend server pool. The acceptable values for this parameter are: Disabled, Enabled. + + + Enabled + Disabled + + + + Name + + Specifies the name of the back-end HTTP settings which this cmdlet adds. + + String + + + Port + + Specifies the port of the back-end server pool. + + Int32 + + + Protocol + + Specifies the protocol for communication between application gateway and back-end servers. + + String + + + + + + ApplicationGateway + + The Add-AzureApplicationGatewayBackendHttpSettings cmdlet adds back-end HTTP settings to an application gateway. + Back-end HTTP settings are applied to all back-end servers in the pool. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + CookieBasedAffinity + + Specifies whether cookie-based affinity should be enabled or disabled for the backend server pool. The acceptable values for this parameter are: Disabled, Enabled. + + String + + String + + + none + + + Name + + Specifies the name of the back-end HTTP settings which this cmdlet adds. + + String + + String + + + none + + + Port + + Specifies the port of the back-end server pool. + + Int32 + + Int32 + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol for communication between application gateway and back-end servers. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Adding back-end HTTP settings to an application gateway + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $appgw = Add-AzureApplicationGatewayBackendHttpSettings -ApplicationGateway $appgw +-Name "Setting02" -Port 88 -Protocol "HTTP" -CookieBasedAffinity "Disabled" + + + The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command adds back-end HTTP settings to the application gateway, setting the port to 88 and the protocol to HTTP and names the settings Setting02. + + + + + + + + + + + + + Get-AzureApplicationGatewayBackendHttpSettings + + + + New-AzureApplicationGatewayBackendHttpSettings + + + + Remove-AzureApplicationGatewayBackendHttpSettings + + + + Set-AzureApplicationGatewayBackendHttpSettings + + + + + + + Add-AzureApplicationGatewayFrontendIPConfig + + Adds a front-end IP configuration to an application gateway. + + + + + Add + AzureApplicationGatewayFrontendIPConfig + + + + The Add-AzureApplicationGatewayFrontendIPConfig cmdlet adds a front-end IP configuration to an application gateway. An application gateway supports two types of front-end IP configurations. +-- Public IP addresses +-- Private IP addresses using internal load-balancing (ILB) + An application gateway can have at most one public IP and one private IP. Add the public IP address and private IP address as separate front-end IPs. + + + + Add-AzureApplicationGatewayFrontendIPConfig + + PrivateIPAddress + + Specifies the private IP address to add as a front-end IP for the application gateway. If specified, this IP is statically allocated from the subnet. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + PublicIPAddress + + Specifies the public IP address which this cmdlet adds as a front-end IP address for the application gateway. + + PSPublicIpAddress + + + Subnet + + Specifies the subnet which this cmdlet adds as front-end IP configuration. If you specify this parameter, it implies that the application gateway supports a private IP based-configuration. If the PrivateIPAddress parameter is specified, it should belong to this subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + PSSubnet + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a front-end IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end IP configuration to add. + + String + + + + Add-AzureApplicationGatewayFrontendIPConfig + + PrivateIPAddress + + Specifies the private IP address to add as a front-end IP for the application gateway. If specified, this IP is statically allocated from the subnet. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + PublicIPAddressId + + Specifies the ID of the public IP address which this cmdlet adds as a front-end IP address for the application gateway. + + String + + + SubnetId + + Specifies the subnet ID which this cmdlet adds as the front-end IP configuration. Passing subnet implies private IP. If the PrivateIPAddresss parameter is specified, it should belong to this subnet. Otherwise, one of the IP from this subnet is dynamically picked up as the front-end IP of the application gateway. + + String + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a front-end IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end IP configuration to add. + + String + + + + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a front-end IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the front-end IP configuration to add. + + String + + String + + + none + + + PrivateIPAddress + + Specifies the private IP address to add as a front-end IP for the application gateway. If specified, this IP is statically allocated from the subnet. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIPAddress + + Specifies the public IP address which this cmdlet adds as a front-end IP address for the application gateway. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIPAddressId + + Specifies the ID of the public IP address which this cmdlet adds as a front-end IP address for the application gateway. + + String + + String + + + none + + + Subnet + + Specifies the subnet which this cmdlet adds as front-end IP configuration. If you specify this parameter, it implies that the application gateway supports a private IP based-configuration. If the PrivateIPAddress parameter is specified, it should belong to this subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the subnet ID which this cmdlet adds as the front-end IP configuration. Passing subnet implies private IP. If the PrivateIPAddresss parameter is specified, it should belong to this subnet. Otherwise, one of the IP from this subnet is dynamically picked up as the front-end IP of the application gateway. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSSubnet + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Add a public IP as the front-end IP address + + + + + PS C:\> $PublicIp = New-AzurePublicIpAddress -ResourceGroupName "ResourceGroup01" -Name "PublicIp01" -location "West US" -AllocationMethod Dynamic +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontEndIp01" –PublicIPAddress $PublicIp - Get-AzureLoadBalancer -Name "myLB" -ResourceGroupName "NrpTest" | Add-AzureLoadBalancerFrontendIpConfig -Name "frontendName" -Subnet $subnet | Set-AzureLoadBalancer - - Adds a FrontendIpConfig to the loadbalancer with a dynamic privateIPAddress from the specified subnet - - - - - - - - - - - - - - -------------------------- Example 2 -------------------------- - - PS C:\> - - PS C:\> $subnet = Get-AzureVirtualNetwork -Name "myVnet" -ResourceGroupName "myRg" | Get-AzureVirtualNetworkSubnetConfig -name "mysubnet" + + + The first command creates a public IP address object and stores it in the $PublicIp variable. + The second command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The third command adds the front-end IP configuration named FrontEndIp01, for the gateway in $AppGw, using the address stored in $PublicIp. + + + + + + + + + + + Example 2: Add a static private IP as the front-end IP address + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontendIP02" -Subnet $Subnet -PrivateIPAddress 10.0.1.1 + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01, and stores it in the $VNet variable. + The second command gets a subnet configuration named Subnet01 using $VNet from the first command and stores it in the $Subnet variable. + The third command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The fourth command adds a front-end IP configuration named FrontendIP02 using $Subnet from the second command and the private IP address 10.0.1.1. + + + + + + + + + + + Example 3: Add a dynamic private IP as the front-end IP address + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontendIP02" -Subnet $Subnet + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01, and stores it in the $VNet variable. + The second command gets a subnet configuration named Subnet01 using $VNet from the first command and stores it in the $Subnet variable. + The third command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The fourth command adds a front-end IP configuration named FrontendIP02 using $Subnet from the second command. + + + + + + + + + + + + + Get-AzureApplicationGatewayFrontendIPConfig + + + + New-AzureApplicationGatewayFrontendIPConfig + + + + Remove-AzureApplicationGatewayFrontendIPConfig + + + + Set-AzureApplicationGatewayFrontendIPConfig + + + + + + + Add-AzureApplicationGatewayFrontendPort + + Adds a front-end port to an application gateway. + + + + + Add + AzureApplicationGatewayFrontendPort + + + + The Add-AzureApplicationGatewayFrontendPort cmdlet adds a front-end port to an application gateway. + + + + Add-AzureApplicationGatewayFrontendPort + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a front-end port. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end port. + + String + + + Port + + Specifies the port number. + + Int32 + + + + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds a front-end port. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the front-end port. + + String + + String + + + none + + + Port + + Specifies the port number. + + Int32 + + Int32 + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Add a front-end port to an application gateway + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $appgw = Add-AzureApplicationGatewayFrontendPort -ApplicationGateway $AppGw -Name "FrontEndPort01" –Port 80 + + + The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command adds port 80 as a front-end port for the application gateway stored in $AppGw and names the port FrontEndPort01. + + + + + + + + + + + + + Get-AzureApplicationGatewayFrontendPort + + + + New-AzureApplicationGatewayFrontendPort + + + + Remove-AzureApplicationGatewayFrontendPort + + + + Set-AzureApplicationGatewayFrontendPort + + + + + + + Add-AzureApplicationGatewayHttpListener + + Adds an HTTP listener to an application gateway. + + + + + Add + AzureApplicationGatewayHttpListener + + + + The Add-AzureApplicationGatewayHttpListener cmdlet adds a HTTP listener to an application gateway. + + + + Add-AzureApplicationGatewayHttpListener + + FrontendIPConfigurationId + + Specifies the application gateway front-end IP ID. + + String + + + FrontendPortId + + Specifies the application gateway front-end port ID. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificateId + + Specifies the SSL certificate ID of the HTTP listener. Must be specified if HTTPS is chosen as listener protocol. + + String + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds an HTTP listener. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end port that this command adds. + + String + + + Protocol + + Specifies the protocol of the HTTP listener. Both HTTP and HTTPS are supported. + + + Http + Https + + + + + Add-AzureApplicationGatewayHttpListener + + FrontendIPConfiguration + + Specifies the application gateway front-end IP resource object. + + PSApplicationGatewayFrontendIPConfiguration + + + FrontendPort + + Specifies the application gateway front-end port object. + + PSApplicationGatewayFrontendPort + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificate + + Specifies the SSL certificate of the HTTP listener. Must be specified if HTTPS is chosen as listener protocol. + + PSApplicationGatewaySslCertificate + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds an HTTP listener. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end port that this command adds. + + String + + + Protocol + + Specifies the protocol of the HTTP listener. Both HTTP and HTTPS are supported. + + + Http + Https + + + + + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds an HTTP listener. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + FrontendIPConfiguration + + Specifies the application gateway front-end IP resource object. + + PSApplicationGatewayFrontendIPConfiguration + + PSApplicationGatewayFrontendIPConfiguration + + + none + + + FrontendIPConfigurationId + + Specifies the application gateway front-end IP ID. + + String + + String + + + none + + + FrontendPort + + Specifies the application gateway front-end port object. + + PSApplicationGatewayFrontendPort + + PSApplicationGatewayFrontendPort + + + none + + + FrontendPortId + + Specifies the application gateway front-end port ID. + + String + + String + + + none + + + Name + + Specifies the name of the front-end port that this command adds. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol of the HTTP listener. Both HTTP and HTTPS are supported. + + String + + String + + + none + + + SslCertificate + + Specifies the SSL certificate of the HTTP listener. Must be specified if HTTPS is chosen as listener protocol. + + PSApplicationGatewaySslCertificate + + PSApplicationGatewaySslCertificate + + + none + + + SslCertificateId + + Specifies the SSL certificate ID of the HTTP listener. Must be specified if HTTPS is chosen as listener protocol. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Add a HTTP listener + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Appgw = Add-AzureApplicationGatewayHttpListener -ApplicationGateway $AppGw -Name "listener01" -Protocol "Http" -FrontendIpConfiguration $FIP01 -FrontendPort $FP01 - Get-AzureLoadBalancer -Name "myLB" -ResourceGroupName "NrpTest" | Add-AzureLoadBalancerFrontendIpConfig -Name "frontendName" -Subnet $subnet -PrivateIpAddress "10.0.1.6" | Set-AzureLoadBalancer - - Adds a FrontendIpConfig to the loadbalancer with a static privateIPAddress from the specified subnet - - - - - - - - - - - - - - -------------------------- Example 3 -------------------------- - - PS C:\> - - PS C:\> $publicip = Get-AzurePublicIpAddress -ResourceGroupName "myRG" -name "myPub" - Get-AzureLoadBalancer -Name "myLB" -ResourceGroupName "NrpTest" | Add-AzureLoadBalancerFrontendIpConfig -Name "frontendName" -PublicIpAddress $publicip | Set-AzureLoadBalancer - - Adds a FrontendIpConfig to the loadbalancer with a publicIP address - - - - - - - - - - - - - - - - - - - - Add-AzureLoadBalancerInboundNatRuleConfig - - Add a new Inbound NAT Rule to an Azure Load Balancer - - - - - Add - AzureLoadBalancerInboundNatRuleConfig - - - - Add a new Inbound NAT Rule to an Azure Load Balancer - - - - Add-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Inbound NAT Rule. - - String - - - LoadBalancer - - The Load Balancer in which this Inbound NAT Rule will be created. - - PSLoadBalancer - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Inbound NAT Rule. - - String - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer NAT Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - Add-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Inbound NAT Rule. - - String - - - LoadBalancer - - The Load Balancer in which this Inbound NAT Rule will be created. - - PSLoadBalancer - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Inbound NAT Rule. - - PSFrontendIPConfiguration - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer NAT Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Inbound NAT Rule. - - String - - String - - - - - - LoadBalancer - - The Load Balancer in which this Inbound NAT Rule will be created. - - PSLoadBalancer - - PSLoadBalancer - - - - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Inbound NAT Rule. - - String - - String - - - - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - String - - - - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - Int32 - - - - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - Int32 - - - - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - Int32 - - - - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer NAT Rule. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Inbound NAT Rule. - - PSFrontendIPConfiguration - - PSFrontendIPConfiguration - - - - - - BackendIpConfigurationId - - The Id of a Backend Ip Configuration to associate with this Inbound NAT Rule. - - string - - string - - - - - - BackendIpConfiguration - - The Backend Ip Configuration to associate with this Inbound NAT Rule. - - psnetworkinterfaceipconfiguration - - psnetworkinterfaceipconfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\> $lb = Get-AzureLoadBalancer -Name "myLb" -ResourceGroupName "myRg" + + + The first command gets the application gateway and stores it in the $AppGw variable. + The second command adds the HTTP listener to the application gateway. + + + + + + + + + + + Example 2: Add a HTTPS listener with SSL + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayHttpListener -ApplicationGateway $AppGw +-Name "Listener01" -Protocol "Https" -FrontendIpConfiguration $FIP01 -FrontendPort $FP01 – SslCertificate $SSLCert01 + + + The first command gets the application gateway and stores it in the $AppGw variable. + The second command adds the listener, which uses the HTTPS protocol, to the application gateway. + + + + + + + + + + + + + Get-AzureApplicationGatewayHttpListener + + + + New-AzureApplicationGatewayHttpListener + + + + Remove-AzureApplicationGatewayHttpListener + + + + Set-AzureApplicationGatewayHttpListener + + + + + + + Add-AzureApplicationGatewayIPConfiguration + + Adds an IP configuration to an application gateway. + + + + + Add + AzureApplicationGatewayIPConfiguration + + + + The Add-AzureApplicationGatewayIPConfiguration cmdlet adds an IP configuration to an application gateway. IP configurations contain the subnet in which the application gateway is deployed. + + + + Add-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SubnetId + + Specifies a subnet ID. This is the subnet in which the application gateway is deployed. + + String + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds an IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the IP configuration to add. + + String + + + + Add-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Subnet + + Specifies a subnet. This is the subnet in which the application gateway is deployed. + + PSSubnet + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds an IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the IP configuration to add. + + String + + + + + + ApplicationGateway + + Specifies the application gateway to which this cmdlet adds an IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the IP configuration to add. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Subnet + + Specifies a subnet. This is the subnet in which the application gateway is deployed. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies a subnet ID. This is the subnet in which the application gateway is deployed. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSSubnet + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Add an virtual network configuration to an application gateway + + + + + PS C:\>$Vnet = Get-AzureVirtualNetwork -Name "Vnet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $Vnet +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzureApplicationGatewayIPConfiguration -ApplicationGateway $AppGw -Name "Appgwsubnet01" -Subnet $Subnet + + + The first command creates a virtual network. + The second command creates a subnet using the previously created virtual network. + The third command gets the application gateway and stores it in the $AppGw variable. + The fouth command adds the IP configuration to the application gateway stored in $AppGw. + + + + + + + + + + + + + Get-AzureApplicationGatewayIPConfiguration + + + + New-AzureApplicationGatewayIPConfiguration + + + + Remove-AzureApplicationGatewayIPConfiguration + + + + Set-AzureApplicationGatewayIPConfiguration + + + + + + + Add-AzureApplicationGatewayRequestRoutingRule + + Adds a request routing rule to an application gateway. + + + + + Add + AzureApplicationGatewayRequestRoutingRule + + + + The Add-AzureApplicationGatewayRequestRoutingRule cmdlet adds a request routing rule to an application gateway. + + + + Add-AzureApplicationGatewayRequestRoutingRule + + BackendAddressPoolId + + Specifies an application gateway back-end address pool ID. + + String + + + BackendHttpSettingsId + + Specifies a backend HTTP settings ID for an application gateway. + + String + + + HttpListenerId + + Specifies application gateway HTTP listener ID. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies an application gateway to which this cmdlet adds a request routing rule. + + PSApplicationGateway + + + Name + + Specifies the name of request routing rule this cmdlet adds. + + String + + + RuleType + + Specifies the type of request routing rule. + + String + + + + Add-AzureApplicationGatewayRequestRoutingRule + + BackendAddressPool + + Specifies an application gateway back-end address pool object. + + PSApplicationGatewayBackendAddressPool + + + BackendHttpSettings + + Specifies a back-end HTTP settings object for an application gateway. + + PSApplicationGatewayBackendHttpSettings + + + HttpListener + + Specifies application gateway HTTP listener object. + + PSApplicationGatewayHttpListener + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies an application gateway to which this cmdlet adds a request routing rule. + + PSApplicationGateway + + + Name + + Specifies the name of request routing rule this cmdlet adds. + + String + + + RuleType + + Specifies the type of request routing rule. + + String + + + + + + ApplicationGateway + + Specifies an application gateway to which this cmdlet adds a request routing rule. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + BackendAddressPool + + Specifies an application gateway back-end address pool object. + + PSApplicationGatewayBackendAddressPool + + PSApplicationGatewayBackendAddressPool + + + none + + + BackendAddressPoolId + + Specifies an application gateway back-end address pool ID. + + String + + String + + + none + + + BackendHttpSettings + + Specifies a back-end HTTP settings object for an application gateway. + + PSApplicationGatewayBackendHttpSettings + + PSApplicationGatewayBackendHttpSettings + + + none + + + BackendHttpSettingsId + + Specifies a backend HTTP settings ID for an application gateway. + + String + + String + + + none + + + HttpListener + + Specifies application gateway HTTP listener object. + + PSApplicationGatewayHttpListener + + PSApplicationGatewayHttpListener + + + none + + + HttpListenerId + + Specifies application gateway HTTP listener ID. + + String + + String + + + none + + + Name + + Specifies the name of request routing rule this cmdlet adds. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RuleType + + Specifies the type of request routing rule. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Add a request routing rule to an application gateway + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Appgw = Add- AzureApplicationGatewayRequestRoutingRule -ApplicationGateway $AppGw -Name "Rule01" -RuleType Basic -BackendHttpSettings $Setting -HttpListener $Listener -BackendAddressPool $Pool + + + The first command gets the application gateway and stores it in the $AppGw variable. + The second command adds the request routing rule to the application gateway. + + + + + + + + + + + + + Get-AzureApplicationGatewayRequestRoutingRule + + + + New-AzureApplicationGatewayRequestRoutingRule + + + + Remove-AzureApplicationGatewayRequestRoutingRule + + + + Set-AzureApplicationGatewayRequestRoutingRule + + + + + + + Add-AzureApplicationGatewaySslCertificate + + Adds an SSL certificate to an application gateway. + + + + + Add + AzureApplicationGatewaySslCertificate + + + + The Add-AzureApplicationGatewaySslCertificate cmdlet adds an SSL certificate to an application gateway. + + + + Add-AzureApplicationGatewaySslCertificate + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the name of application gateway to which this cmdlet adds an SSL certificate. + + PSApplicationGateway + + + CertificateFile + + Specifies the .pfx file of an SSL certificate that this cmdlet adds. + + System.String + + + Name + + Specifies the name of the SSL certificate that this cmdlet adds. + + String + + + Password + + Specifies the password of the SSL certificate that this cmdlet adds. + + String + + + + + + ApplicationGateway + + Specifies the name of application gateway to which this cmdlet adds an SSL certificate. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + CertificateFile + + Specifies the .pfx file of an SSL certificate that this cmdlet adds. + + System.String + + System.String + + + none + + + Name + + Specifies the name of the SSL certificate that this cmdlet adds. + + String + + String + + + none + + + Password + + Specifies the password of the SSL certificate that this cmdlet adds. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Add an SSL certificate to an application gateway. + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGW = Add-AzureApplicationGatewaySslCertificate -ApplicationGateway $AppGW -Name "Cert01" –CertificateFile "D:\cert01.pfx" –Password "Password01" + + + This command gets an application gateway named ApplicationGateway01 and then adds an SSL certificate named Cert01 to it. + + + + + + + + + + + + + Get-AzureApplicationGatewaySslCertificate + + + + New-AzureApplicationGatewaySslCertificate + + + + Remove-AzureApplicationGatewaySslCertificate + + + + Set-AzureApplicationGatewaySslCertificate + + + + + + + Add-AzureLoadBalancerBackendAddressPoolConfig + + Adds a backend address pool configuration to a load balancer. + + + + + Add + AzureLoadBalancerBackendAddressPoolConfig + + + + The Add-AzureLoadBalancerBackend cmdlet adds a backend address pool to an Azure load balancer. + + + + Add-AzureLoadBalancerBackendAddressPoolConfig + + Profile + + Specifies an Azure profile. + + Microsoft.Azure.Common.Authentication.Models.AzureProfile + + + LoadBalancer + + Specifies a LoadBalancer object. + + Microsoft.Azure.Commands.Network.Models.PSLoadBalancer + + + Name + + Specifies the name of the backend address pool configuration to add. + + System.String + + + + + + LoadBalancer + + Specifies a LoadBalancer object. + + Microsoft.Azure.Commands.Network.Models.PSLoadBalancer + + Microsoft.Azure.Commands.Network.Models.PSLoadBalancer + + + none + + + Name + + Specifies the name of the backend address pool configuration to add. + + System.String + + System.String + + + none + + + Profile + + Specifies an Azure profile. + + Microsoft.Azure.Common.Authentication.Models.AzureProfile + + Microsoft.Azure.Common.Authentication.Models.AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1 Add a backend address pool configuration to a load balancer + + + + + PS C:\>Get-AzureLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "myrg" | Add-AzureLoadBalancerBackendAddressPoolConfig -Name "BackendAddressPool02" | Set-AzureLoadBalancer + + + This command gets the load balancer named MyLoadBalancer, adds the backend address pool named BackendAddressPool02 to MyLoadBalancer, and then uses the Set-AzureLoadBalancer cmdlet to update MyLoadBalancer. + + + + + + + + + + + + + Get-AzureLoadBalancer + + + + Get-AzureNetworkInterface + + + + Get-AzureLoadBalancerBackendAddressPoolConfig + + + + New-AzureLoadBalancerBackendAddressPoolConfig + + + + Remove-AzureLoadBalancerBackendAddressPoolConfig + + + + + + + Add-AzureLoadBalancerFrontendIpConfig + + Adds a front-end IP configuration to a load balancer. + + + + + Add + AzureLoadBalancerFrontendIpConfig + + + + The Add-AzureLoadBalancerFrontendIpConifg cmdlet adds a front-end IP configuration to an Azure load balancer. + + + + Add-AzureLoadBalancerFrontendIpConfig + + PrivateIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddressId + + Specifies the ID of the PublicIpAddress object to associate with a front-end IP configuration. + + String + + + SubnetId + + Specifies the ID of the subnet in which to add a front-end IP configuration. + + String + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a front-end IP configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the front-end IP configuration to add. + + String + + + + Add-AzureLoadBalancerFrontendIpConfig + + PrivateIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + PSPublicIpAddress + + + Subnet + + Specifies the Subnet object in which to add a front-end IP configuration. + + PSSubnet + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a front-end IP configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the front-end IP configuration to add. + + String + + + + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a front-end IP configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the front-end IP configuration to add. + + String + + String + + + none + + + PrivateIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIpAddressId + + Specifies the ID of the PublicIpAddress object to associate with a front-end IP configuration. + + String + + String + + + none + + + Subnet + + Specifies the Subnet object in which to add a front-end IP configuration. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the ID of the subnet in which to add a front-end IP configuration. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1 Add a front-end IP configuration with a dynamic IP address + + + + + PS C:\>$Subnet = Get-AzureVirtualNetwork -Name "myVnet" -ResourceGroupName "myRg" | Get-AzureVirtualNetworkSubnetConfig -Name "mysubnet" +PS C:\> Get-AzureLoadBalancer -Name "myLB" -ResourceGroupName "NrpTest" | Add-AzureLoadBalancerFrontendIpConfig -Name "frontendName" -Subnet $Subnet | Set-AzureLoadBalancer + + + This command adds a front-end IP configuration to the load balancer with a dynamic private IP address from the specified subnet. + + + + + + + + + + + Example 2 Add a front-end IP configuration with a static IP address + + + + + PS C:\>$Subnet = Get-AzureVirtualNetwork -Name "myVnet" -ResourceGroupName "myRg" | Get-AzureVirtualNetworkSubnetConfig -Name "mysubnet" +PS C:\> Get-AzureLoadBalancer -Name "myLB" -ResourceGroupName "NrpTest" | Add-AzureLoadBalancerFrontendIpConfig -Name "frontendName" -Subnet $Subnet -PrivateIpAddress "10.0.1.6" | Set-AzureLoadBalancer + + + This command adds a front-end IP configuration to the load balancer with a static private IP address from the specified subnet. + + + + + + + + + + + Example 3 Add a front-end IP configuration with a public IP address + + + + + PS C:\>$PublicIp = Get-AzurePublicIpAddress -ResourceGroupName "myRG" -Name "myPub" +PS C:\> Get-AzureLoadBalancer -Name "myLB" -ResourceGroupName "NrpTest" | Add-AzureLoadBalancerFrontendIpConfig -Name "frontendName" -PublicIpAddress $PublicIp | Set-AzureLoadBalancer + + + This command adds a front-end IP configuration to the load balancer with a public IP address. + + + + + + + + + + + + + Get-AzureLoadBalancerFrontendIpConfig + + + + Get-AzureVirtualNetwork + + + + Get-AzureVirtualNetworkSubnetConfig + + + + New-AzureLoadBalancerFrontendIpConfig + + + + Remove-AzureLoadBalancerFrontendIpConfig + + + + Set-AzureLoadBalancerFrontendIpConfig + + + + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + Adds an inbound NAT rule configuration to a load balancer. + + + + + Add + AzureLoadBalancerInboundNatRuleConfig + + + + The Add-AzureLoadBalancerInboundNatRuleConfig cmdlet adds an inbound network address translation (NAT) rule configuration to an Azure load balancer. + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + BackendPort + + Specifies the backend port for traffic matched by a rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfigurationId + + Specifies an ID for a front-end IP address configuration. + + System.String + + + FrontendPort + + Specifies the front-end port that is matched by a rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by an inbound NAT rule. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds an inbound NAT rule configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the inbound NAT rule configuration to add. + + String + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + BackendPort + + Specifies the backend port for traffic matched by a rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with an inbound NAT rule configuration. + + PSFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port that is matched by a rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by an inbound NAT rule. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds an inbound NAT rule configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the inbound NAT rule configuration to add. + + String + + + + + + BackendPort + + Specifies the backend port for traffic matched by a rule configuration. + + Int32 + + Int32 + + + none + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with an inbound NAT rule configuration. + + PSFrontendIPConfiguration + + PSFrontendIPConfiguration + + + none + + + FrontendIpConfigurationId + + Specifies an ID for a front-end IP address configuration. + + System.String + + System.String + + + none + + + FrontendPort + + Specifies the front-end port that is matched by a rule configuration. + + Int32 + + Int32 + + + none + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + Int32 + + + none + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds an inbound NAT rule configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the inbound NAT rule configuration to add. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol that is matched by an inbound NAT rule. The acceptable values for this parameter are:Tcp or Udp. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Add an inbound NAT rule configuration to a load balancer + + + + + PS C:\>$Lb = Get-AzureLoadBalancer -Name "myLb" -ResourceGroupName "myRg" +PS C:\> $Lb | Add-AzureLoadBalancerInboundNatRuleConfig -Name "natRule" -FrontendIPConfiguration$lb.Properties.FrontendIPConfigurations[0] -BackendIpConfiguration $Nic.Properties.IpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 -IdleTimeoutInSeconds 17 -EnableFloatingIP | Set-AzureLoadBalancer + + + The first command gets the load balancer named myLb, and then stores it in the $Lb variable. + The second command adds an inbound NAT rule configuration to the load balancer stored in $Lb, and then uses the Set-AzureLoadBalancer cmdlet to update the load balancer. + + + + + + + + + + + + + Get-AzureLoadBalancer + + + + Get-AzureLoadBalancerInboundNatRuleConfig + + + + New-AzureLoadBalancerInboundNatRuleConfig + + + + Remove-AzureLoadBalancerInboundNatRuleConfig + + + + Set-AzureLoadBalancer + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + + + + + + Add-AzureLoadBalancerProbeConfig + + Adds a probe configuration to a load balancer. + + + + + Add + AzureLoadBalancerProbeConfig + + + + The Add-AzureLoadBalancerProbeConfig cmdlet adds a probe configuration to an Azure load balancer. + + + + Add-AzureLoadBalancerProbeConfig + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol to use for the probe. The acceptable values for this parameter are:Tcp or Http. + + + Tcp + Http + + + + RequestPath + + Specifies the path in the load-balanced service to probe to determine health. + + String + + + IntervalInSeconds + + Specifies the interval, in seconds, between probes to each instance of the load-balanced service. + + Int32 + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a probe configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the probe configuration to add. + + String + + + Port + + Specifies the port on which probes should connect to a load-balanced service. + + Int32 + + + ProbeCount + + Specifies the number of per-instance consecutive failures for an instance to be considered unhealthy. + + Int32 + + + + + + IntervalInSeconds + + Specifies the interval, in seconds, between probes to each instance of the load-balanced service. + + Int32 + + Int32 + + + none + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a probe configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the probe configuration to add. + + String + + String + + + none + + + Port + + Specifies the port on which probes should connect to a load-balanced service. + + Int32 + + Int32 + + + none + + + ProbeCount + + Specifies the number of per-instance consecutive failures for an instance to be considered unhealthy. + + Int32 + + Int32 + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol to use for the probe. The acceptable values for this parameter are:Tcp or Http. + + String + + String + + + none + + + RequestPath + + Specifies the path in the load-balanced service to probe to determine health. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1 Add a probe configuration to a load balancer + + + + + PS C:\>Get-AzureLoadBalancer -Name "myLb" -ResourceGroupName "myRg" | Add-AzureLoadBalancerProbeConfig -Name "probeName" -RequestPath healthcheck2.aspx -Protocol http -Port 81 -IntervalInSeconds 16 -ProbeCount 3 | Set-AzureLoadBalancer + + + This command gets the load balancer named myLb, adds the specified probe configuration to it, and then uses the Set-AzureLoadBalancer cmdlet to update the load balancer. + + + + + + + + + + + + + Get-AzureLoadBalancerProbeConfig + + + + New-AzureLoadBalancerProbeConfig + + + + Remove-AzureLoadBalancerProbeConfig + + + + Set-AzureLoadBalancer + + + + Set-AzureLoadBalancerProbeConfig + + + + + + + Add-AzureLoadBalancerRuleConfig + + Adds a rule configuration to a load balancer. + + + + + Add + AzureLoadBalancerRuleConfig + + + + The Add-AzureLoadBalancerRuleConfig cmdlet adds a rule configuration to an Azure load balancer. + + + + Add-AzureLoadBalancerRuleConfig + + BackendAddressPool + + Specifies the backend address pool to associate with a load balancer rule configuration. + + PSBackendAddressPool + + + BackendPort + + Specifies the backend port for traffic that is matched by a load balancer rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in the load balancer. + + Int32 + + + LoadDistribution + + Specifies a load distribution. + + + Default + SourceIP + SourceIPProtocol + + + + Probe + + Specifies a probe to associate with a load balancer rule configuration. + + PSProbe + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specfies the protocol that is matched by a load balancer rule. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a rule configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the load balancer rule configuration. + + String + + + + Add-AzureLoadBalancerRuleConfig + + BackendAddressPoolId + + Specifies the ID of a BackendAddressPool object to associate with a load balancer rule configuration. + + String + + + BackendPort + + Specifies the backend port for traffic that is matched by a load balancer rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in the load balancer. + + Int32 + + + LoadDistribution + + Specifies a load distribution. + + + Default + SourceIP + SourceIPProtocol + + + + ProbeId + + Specifies the ID of the probe to associate with a load balancer rule configuration. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specfies the protocol that is matched by a load balancer rule. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a rule configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the load balancer rule configuration. + + String + + + + + + BackendAddressPool + + Specifies the backend address pool to associate with a load balancer rule configuration. + + PSBackendAddressPool + + PSBackendAddressPool + + + none + + + BackendAddressPoolId + + Specifies the ID of a BackendAddressPool object to associate with a load balancer rule configuration. + + String + + String + + + none + + + BackendPort + + Specifies the backend port for traffic that is matched by a load balancer rule configuration. + + Int32 + + Int32 + + + none + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + PSFrontendIPConfiguration + + + none + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + System.String + + + none + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + Int32 + + + none + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in the load balancer. + + Int32 + + Int32 + + + none + + + LoadBalancer + + Specifies a LoadBalancer object. This cmdlet adds a rule configuration to the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + LoadDistribution + + Specifies a load distribution. + + String + + String + + + none + + + Name + + Specifies the name of the load balancer rule configuration. + + String + + String + + + none + + + Probe + + Specifies a probe to associate with a load balancer rule configuration. + + PSProbe + + PSProbe + + + none + + + ProbeId + + Specifies the ID of the probe to associate with a load balancer rule configuration. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specfies the protocol that is matched by a load balancer rule. The acceptable values for this parameter are:Tcp or Udp. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1 Add a rule configuration to a load balancer + + + + + PS C:\>$LoadBalancer = Get-AzureLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" +PS C:\> $LoadBalancer | Add-AzureLoadBalancerRuleConfig -Name "LbRuleConfig" -FrontendIPConfiguration $LoadBalancer.Properties.FrontendIPConfigurations[0] -BackendAddressPool $LoadBalancer.Properties.BackendAddressPools[0] -Probe $LoadBalancer.Properties.Probes[0] -Protocol "Tcp" -FrontendPort 80 -BackendPort 80 -IdleTimeoutInSeconds 15 -EnableFloatingIP | Set-AzureLoadBalancer + + + The first command gets the load balancer named MyLoadBalancer, and then stores it in the $LoadBalancer variable. + The second command adds the rule configuration named LbRuleConfig to the load balancer stored in $LoadBalancer, and then uses the Set-AzureLoadBalancerRuleConfig cmdlet to update the rule configuration for $LoadBalancer. + + + + + + + + + + + + + Get-AzureLoadBalancerRuleConfig + + + + New-AzureLoadBalancerRuleConfig + + + + Remove-AzureLoadBalancerRuleConfig + + + + Set-AzureLoadBalancerRuleConfig + + + + + + + Add-AzureNetworkSecurityRuleConfig + + Adds a network security rule configuration to a network security group. + + + + + Add + AzureNetworkSecurityRuleConfig + + + + The Add-AzureNetworkSecurityRuleConfig cmdlet adds a network security rule configuration to an Azure network security group. + + + + Add-AzureNetworkSecurityRuleConfig + + Access + + Specifies whether network traffic is allowed or denied. The acceptable values for this parameter are:Allow and Deny. + + + Allow + Deny + + + + Description + + Specifies a description of a network security rule configuration. + + String + + + DestinationAddressPrefix + + Specifies a destination address prefix. The acceptable values for this parameter are: - $lb | Add-AzureLoadBalancerInboundNatRuleConfig -Name "natRule" -FrontendIPConfiguration$lb.FrontendIPConfigurations[0] -BackendIpConfiguration $nic.IpConfigurations[0] -Protocol Tcp -FrontendPort 3350 -BackendPort 3350 -IdleTimeoutInSeconds 17 -EnableFloatingIP | Set-AzureLoadBalancer - - - - - - - - - - - - - - - - - - - - - - Add-AzureLoadBalancerProbeConfig - - Add a new Probe configuration to an Azure Load Balancer - - - - - Add - AzureLoadBalancerProbeConfig - - - - Add a new Probe configuration to an Azure Load Balancer - - - - Add-AzureLoadBalancerProbeConfig - - Name - - The name of the probe configuration. - - String - - - LoadBalancer - - The Load Balancer in which this probe configuration will be created. - - PSLoadBalancer - - - RequestPath - - The path within the load balanced service to probe to determine health. - - String - - - Protocol - - The protocol to use for the probing. - Options: Tcp or Http - - String - - - Port - - The port on which probes should connect to the load balanced service. - - Int32 - - - IntervalInSeconds - - The interval between probes to each instance of the load balanced service. - - Int32 - - - ProbeCount - - The number of per-instance consecutive failures for an instance to be considered unhealthy. - - Int32 - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the probe configuration. - - String - - String - - - - - - LoadBalancer - - The Load Balancer in which this probe configuration will be created. - - PSLoadBalancer - - PSLoadBalancer - - - - - - RequestPath - - The path within the load balanced service to probe to determine health. - - String - - String - - - - - - Protocol - - The protocol to use for the probing. - Options: Tcp or Http - - String - - String - - - - - - Port - - The port on which probes should connect to the load balanced service. - - Int32 - - Int32 - - - - - - IntervalInSeconds - - The interval between probes to each instance of the load balanced service. - - Int32 - - Int32 - - - - - - ProbeCount - - The number of per-instance consecutive failures for an instance to be considered unhealthy. - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\> Get-AzureLoadBalancer -Name "myLb" -ResourceGroupName "myRg" | Add-AzureLoadBalancerProbeConfig -Name "probeName" -RequestPath healthcheck2.aspx -Protocol http -Port 81 -IntervalInSeconds 16 -ProbeCount 3 | Set-AzureLoadBalancer - - - - - - - - - - - - - - - - - - - - - - Add-AzureLoadBalancerRuleConfig - - Add a new Load Balancer Rule to an Azure Load Balancer - - - - - Add - AzureLoadBalancerRuleConfig - - - - Add a new Load Balancer Rule to an Azure Load Balancer - - - - Add-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancer Rule. - - String - - - LoadBalancer - - The Load Balancer in which this Load Balancer Rule will be created. - - PSLoadBalancer - - - FrontendIpConfigurationId - - A list of Frontend Ip Id to associate with this Load Balancer Rule. - - String - - - BackendAddressPoolId - - The Id of a Backend Address Pool to associate with this Load Balancer Rule. - - String - - - ProbeId - - The Id of the probe to associate with this Load Balancer Rule. - - String - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - - EnableFloatingIP - - Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - Add-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancer Rule. - - String - - - LoadBalancer - - The Load Balancer in which this Load Balancer Rule will be created. - - PSLoadBalancer - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Load Balancer Rule. - - PSFrontendIPConfiguration - - - BackendAddressPool - - The Backend Address Pool to associate with this Load Balancer Rule. - - PSBackendAddressPool - - - Probe - - The probe object to be used for this Load Balancer Rule. - - PSProbe - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - - EnableFloatingIP - - Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer Rule. - - String - - String - - - - - - LoadBalancer - - The Load Balancer in which this Load Balancer Rule will be created. - - PSLoadBalancer - - PSLoadBalancer - - - - - - FrontendIpConfigurationId - - A list of Frontend Ip Id to associate with this Load Balancer Rule. - - String - - String - - - - - - BackendAddressPoolId - - The Id of a Backend Address Pool to associate with this Load Balancer Rule. - - String - - String - - - - - - ProbeId - - The Id of the probe to associate with this Load Balancer Rule. - - String - - String - - - - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp. - - String - - String - - - - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - Int32 - - - - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - Int32 - - - - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - Int32 - - - - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - String - - - - - - EnableFloatingIP - - Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Load Balancer Rule. - - PSFrontendIPConfiguration - - PSFrontendIPConfiguration - - - - - - BackendAddressPool - - The Backend Address Pool to associate with this Load Balancer Rule. - - PSBackendAddressPool - - PSBackendAddressPool - - - - - - Probe - - The probe object to be used for this Load Balancer Rule. - - PSProbe - - PSProbe - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\> $lb = Get-AzureLoadBalancer -Name "myLb" -ResourceGroupName "myRg" +-- A Classless Interdomain Routing (CIDR) address +-- A destination IP address range +-- A wildcard character (*) to match any IP address + You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. + + String + + + DestinationPortRange + + Specifies a destination port or range. The acceptable values for this parameter are: - $lb | Add-AzureLoadBalancerRuleConfig -Name "lbruleName" -FrontendIPConfiguration $lb.FrontendIPConfigurations[0] -BackendAddressPool $lb.BackendAddressPools[0] -Probe $lb.Probes[0] -Protocol Tcp -FrontendPort 80 -BackendPort 80 -IdleTimeoutInSeconds 15 -EnableFloatingIP | Set-AzureLoadBalancer - - - - - - - - - - - - - - - - - - - - - - Add-AzureNetworkSecurityRuleConfig - - Add a new Network Security Rule to a Network Security Group - - - - - Add - AzureNetworkSecurityRuleConfig - - - - Add a new Network Security Rule to a Network Security Group - - - - Add-AzureNetworkSecurityRuleConfig - - Name - - The name of the Network Security Rule. - - String - - - NetworkSecurityGroup - - The Network Security Group object to which this Network Security Rule will be added. - - PSNetworkSecurityGroup - - - Description - - The description of the Network Security Rule. - - String - - - Protocol - - Network protocol this rule applies to. Can be Tcp, Udp or * to match both. - - String - - - SourcePortRange - - Source Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - - DestinationPortRange - - Destination Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - - SourceAddressPrefix - - CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - - DestinationAddressPrefix - - CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - - Access - - Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny” - - String - - - Priority - - Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. - - Int32 - - - Direction - - The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Rule. - - String - - String - - - - - - NetworkSecurityGroup - - The Network Security Group object to which this Network Security Rule will be added. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - Description - - The description of the Network Security Rule. - - String - - String - - - - - - Protocol - - Network protocol this rule applies to. Can be Tcp, Udp or * to match both. - - String - - String - - - - - - SourcePortRange - - Source Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - String - - - - - - DestinationPortRange - - Destination Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - String - - - - - - SourceAddressPrefix - - CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - String - - - - - - DestinationAddressPrefix - - CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - String - - - - - - Access - - Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny” - - String - - String - - - - - - Priority - - Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. - - Int32 - - Int32 - - - - - - Direction - - The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureRouteConfig - - Adds a Route to a Route Table - - - - - Add - AzureRouteConfig - - - - Adds a Route to a Route Table - - - - Add-AzureRouteConfig - - Name - - Name of the Route - - String - - - RouteTable - - The Route Table object to which this Route will be added. - - PSRouteTable - - - AddressPrefix - - The destination CIDR to which the route applies, such as 10.1.0.0/16 - - String - - - NextHopType - - The type of Azure hop the packet should be sent to. -Possible values are: -VirtualNetworkGateway: Represents an Azure S2S VPN Gateway. -VnetLocal: Represents the local virtual network. For instance, if you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, the route for each subnet in the route table will have a next hop value of Local. -Internet: Represents the default Internet gateway provided by the Azure Infrastructure -VirtualAppliance: Represents a virtual appliance you added to your Azure virtual network. -None: Represents a black hole. Packets forwarded to a black hole will not be forwarded at all. - - String - - - NextHopIpAddress - - Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - Name of the Route - - String - - String - - - - - - RouteTable - - The Route Table object to which this Route will be added. - - PSRouteTable - - PSRouteTable - - - - - - AddressPrefix - - The destination CIDR to which the route applies, such as 10.1.0.0/16 - - String - - String - - - - - - NextHopType - - The type of Azure hop the packet should be sent to. -Possible values are: -VirtualNetworkGateway: Represents an Azure S2S VPN Gateway. -VnetLocal: Represents the local virtual network. For instance, if you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, the route for each subnet in the route table will have a next hop value of Local. -Internet: Represents the default Internet gateway provided by the Azure Infrastructure -VirtualAppliance: Represents a virtual appliance you added to your Azure virtual network. -None: Represents a black hole. Packets forwarded to a black hole will not be forwarded at all. - - String - - String - - - - - - NextHopIpAddress - - Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Add-AzureVirtualNetworkSubnetConfig - - Creates a new Subnet with an existing Virtual Network - - - - - Add - AzureVirtualNetworkSubnetConfig - - - - Creates a new Subnet with an existing Virtual Network - - - - Add-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet. - - String - - - VirtualNetwork - - The Virtual Network object in which this subnet should be created. - - PSVirtualNetwork - - - AddressPrefix - - The Ip range covered by this Subnet. - - String - - - NetworkSecurityGroup - - The Network Security Group object containing ACLs that will apply to this Subnet. - - PSNetworkSecurityGroup - - - RouteTable - - The Route Table object containing Routes that will apply to this Subnet. - - PSRouteTable - - - Profile - - - - AzureProfile - - - - Add-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet. - - String - - - VirtualNetwork - - The Virtual Network object in which this subnet should be created. - - PSVirtualNetwork - - - AddressPrefix - - The Ip range covered by this Subnet. - - String - - - NetworkSecurityGroupId - - A reference to the Network Security Group containing ACLs that will apply to this Subnet. - - String - - - RouteTableId - - A reference to a Route Table object containing Routes that will apply to this Subnet. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Subnet. - - String - - String - - - - - - VirtualNetwork - - The Virtual Network object in which this subnet should be created. - - PSVirtualNetwork - - PSVirtualNetwork - - - - - - AddressPrefix - - The Ip range covered by this Subnet. - - String - - String - - - - - - NetworkSecurityGroup - - The Network Security Group object containing ACLs that will apply to this Subnet. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - RouteTable - - The Route Table object containing Routes that will apply to this Subnet. - - PSRouteTable - - PSRouteTable - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - NetworkSecurityGroupId - - A reference to the Network Security Group containing ACLs that will apply to this Subnet. - - String - - String - - - - - - RouteTableId - - A reference to a Route Table object containing Routes that will apply to this Subnet. - - String - - String - - - - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this Subnet. - - list`1[string] - - list`1[string] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGateway - - - - - - - Get - AzureApplicationGateway - - - - - - - - Get-AzureApplicationGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayBackendAddressPool - - - - - - - Get - AzureApplicationGatewayBackendAddressPool - - - - - - - - Get-AzureApplicationGatewayBackendAddressPool - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayBackendHttpSettings - - - - - - - Get - AzureApplicationGatewayBackendHttpSettings - - - - - - - - Get-AzureApplicationGatewayBackendHttpSettings - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayFrontendIPConfig - - - - - - - Get - AzureApplicationGatewayFrontendIPConfig - - - - - - - - Get-AzureApplicationGatewayFrontendIPConfig - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayFrontendPort - - - - - - - Get - AzureApplicationGatewayFrontendPort - - - - - - - - Get-AzureApplicationGatewayFrontendPort - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayHttpListener - - - - - - - Get - AzureApplicationGatewayHttpListener - - - - - - - - Get-AzureApplicationGatewayHttpListener - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayIPConfiguration - - - - - - - Get - AzureApplicationGatewayIPConfiguration - - - - - - - - Get-AzureApplicationGatewayIPConfiguration - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewayRequestRoutingRule - - - - - - - Get - AzureApplicationGatewayRequestRoutingRule - - - - - - - - Get-AzureApplicationGatewayRequestRoutingRule - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewaySku - - - - - - - Get - AzureApplicationGatewaySku - - - - - - - - Get-AzureApplicationGatewaySku - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureApplicationGatewaySslCertificate - - - - - - - Get - AzureApplicationGatewaySslCertificate - - - - - - - - Get-AzureApplicationGatewaySslCertificate - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLoadBalancer - - Retrieve a single Load Balancer or a list of Load Balancers within a Resource Group - - - - - Get - AzureLoadBalancer - - - - Retrieve a single Load Balancer or a list of Load Balancers within a Resource Group - - - - Get-AzureLoadBalancer - - Name - - The name of the Load Balancer to retrieve. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Load Balancer. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Load Balancer. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLoadBalancerBackendAddressPoolConfig - - Retrieve a single Backend Address Pool or a list of Backend Address Pools within a Load Balancer - - - - - Get - AzureLoadBalancerBackendAddressPoolConfig - - - - Retrieve a single Backend Address Pool or a list of Backend Address Pools within a Load Balancer - - - - Get-AzureLoadBalancerBackendAddressPoolConfig - - Name - - The name of the Load Balancer containing the Backend Address Pool. - - String - - - LoadBalancer - - The name of the Backend Address Pool to retrieve. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer containing the Backend Address Pool. - - String - - String - - - - - - LoadBalancer - - The name of the Backend Address Pool to retrieve. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLoadBalancerFrontendIpConfig - - Retrieve a single Frontend Ip or a list of Frontend Ips within a Load Balancer - - - - - Get - AzureLoadBalancerFrontendIpConfig - - - - Retrieve a single Frontend Ip or a list of Frontend Ips within a Load Balancer - - - - Get-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Load Balancer containing the Frontend Ip. - - String - - - LoadBalancer - - The Load Balancer with which this Frontend Ip config will be associated. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer containing the Frontend Ip. - - String - - String - - - - - - LoadBalancer - - The Load Balancer with which this Frontend Ip config will be associated. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLoadBalancerInboundNatRuleConfig - - Retrieve a single Inbound NAT Rule or a list of Inbound NAT Rules within a Load Balancer - - - - - Get - AzureLoadBalancerInboundNatRuleConfig - - - - Retrieve a single Inbound NAT Rule or a list of Inbound NAT Rules within a Load Balancer - - - - Get-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Inbound NAT Rule to retrieve. - - String - - - LoadBalancer - - The name of the Load Balancer containing the Inbound NAT Rule. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Inbound NAT Rule to retrieve. - - String - - String - - - - - - LoadBalancer - - The name of the Load Balancer containing the Inbound NAT Rule. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLoadBalancerProbeConfig - - Retrieve a single Probe configuration or a list of Probe configurations within a Load Balancer - - - - - Get - AzureLoadBalancerProbeConfig - - - - Retrieve a single Probe configuration or a list of Probe configurations within a Load Balancer - - - - Get-AzureLoadBalancerProbeConfig - - Name - - The name of the probe configuration to retrieve. - - String - - - LoadBalancer - - The name of the Load Balancer containing the probe configuration. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the probe configuration to retrieve. - - String - - String - - - - - - LoadBalancer - - The name of the Load Balancer containing the probe configuration. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLoadBalancerRuleConfig - - Retrieve a single Load Balancer Rule or a list of Load Balancer Rules within a Load Balancer - - - - - Get - AzureLoadBalancerRuleConfig - - - - Retrieve a single Load Balancer Rule or a list of Load Balancer Rules within a Load Balancer - - - - Get-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancer Rule to retrieve. - - String - - - LoadBalancer - - The name of the Load Balancer containing the Load Balancer Rule. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer Rule to retrieve. - - String - - String - - - - - - LoadBalancer - - The name of the Load Balancer containing the Load Balancer Rule. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureLocalNetworkGateway - - - - - - - Get - AzureLocalNetworkGateway - - - - - - - - Get-AzureLocalNetworkGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureNetworkInterface - - Retrieve a single Network Interface or a list of Network Interfaces within a Resource Group - - - - - Get - AzureNetworkInterface - - - - Retrieve a single Network Interface or a list of Network Interfaces within a Resource Group - - - - Get-AzureNetworkInterface - - Name - - The name of the Network Interface to retrieve. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Network Interface - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Interface to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Network Interface - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureNetworkSecurityGroup - - Get an existing Network Security Group. - - - - - Get - AzureNetworkSecurityGroup - - - - Get an existing Network Security Group. - - - - Get-AzureNetworkSecurityGroup - - Name - - The name of the Network Security Group to retrieve. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Network Security Group. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Group to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Network Security Group. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureNetworkSecurityRuleConfig - - Get an existing Network Security Rule within a Network Security Group. - - - - - Get - AzureNetworkSecurityRuleConfig - - - - Get an existing Network Security Rule within a Network Security Group. - - - - Get-AzureNetworkSecurityRuleConfig - - Name - - The name of the Network Security Rule to retrieve. - - String - - - NetworkSecurityGroup - - The Network Security Group object containing the Network Security Rule to retrieve. - - PSNetworkSecurityGroup - - - DefaultRules - - Switch on whether to get user-created rules, or default rules. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Rule to retrieve. - - String - - String - - - - - - NetworkSecurityGroup - - The Network Security Group object containing the Network Security Rule to retrieve. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - DefaultRules - - Switch on whether to get user-created rules, or default rules. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzurePublicIpAddress - - Retrieve a single Public Ip Address or a list of Public Ip Addresses within a Resource Group - - - - - Get - AzurePublicIpAddress - - - - Retrieve a single Public Ip Address or a list of Public Ip Addresses within a Resource Group - - - - Get-AzurePublicIpAddress - - Name - - The name of the Public Ip Address to retrieve. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Public Ip Address. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Public Ip Address to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Public Ip Address. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureRouteConfig - - Retrieve a single Route or a list of Route within a Route Table - - - - - Get - AzureRouteConfig - - - - Retrieve a single Route or a list of Route within a Route Table - - - - Get-AzureRouteConfig - - Name - - Name of the Route - - String - - - RouteTable - - The Route Table with which this Route will be associated. - - PSRouteTable - - - Profile - - - - AzureProfile - - - - - - Name - - Name of the Route - - String - - String - - - - - - RouteTable - - The Route Table with which this Route will be associated. - - PSRouteTable - - PSRouteTable - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureRouteTable - - Retrieve a single Route Table or a list of Route Tables within a Resource Group or a list of Route Tables in the subscription - - - - - Get - AzureRouteTable - - - - Retrieve a single Route Table or a list of Route Tables within a Resource Group or a list of Route Tables in the subscription - - - - Get-AzureRouteTable - - Name - - The name of the Route Table to retrieve. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Route Table. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Route Table to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Route Table. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureVirtualNetwork - - Retrieve a single Virtual Network or a list of Virtual Networks within a Resource Group - - - - - Get - AzureVirtualNetwork - - - - Retrieve a single Virtual Network or a list of Virtual Networks within a Resource Group - - - - Get-AzureVirtualNetwork - - Name - - The name of the Virtual Network to retrieve. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Virtual Network - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Virtual Network to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Virtual Network - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureVirtualNetworkGateway - - - - - - - Get - AzureVirtualNetworkGateway - - - - - - - - Get-AzureVirtualNetworkGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureVirtualNetworkGatewayConnection - - - - - - - Get - AzureVirtualNetworkGatewayConnection - - - - - - - - Get-AzureVirtualNetworkGatewayConnection - - Name - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureVirtualNetworkGatewayConnectionSharedKey - - - - - - - Get - AzureVirtualNetworkGatewayConnectionSharedKey - - - - - - - - Get-AzureVirtualNetworkGatewayConnectionSharedKey - - Name - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureVirtualNetworkSubnetConfig - - Retrieve a single Subnet or a list of Subnets within a Virtual Network - - - - - Get - AzureVirtualNetworkSubnetConfig - - - - Retrieve a single Subnet or a list of Subnets within a Virtual Network - - - - Get-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet to retrieve. - - String - - - VirtualNetwork - - The Virtual Network containing the Subnet. - - PSVirtualNetwork - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Subnet to retrieve. - - String - - String - - - - - - VirtualNetwork - - The Virtual Network containing the Subnet. - - PSVirtualNetwork - - PSVirtualNetwork - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGateway - - - - - - - New - AzureApplicationGateway - - - - - - - - New-AzureApplicationGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Location - - - - String - - - Sku - - - - PSApplicationGatewaySku - - - GatewayIPConfigurations - - - - List`1[PSApplicationGatewayIPConfiguration] - - - SslCertificates - - - - List`1[PSApplicationGatewaySslCertificate] - - - FrontendIPConfigurations - - - - List`1[PSApplicationGatewayFrontendIPConfiguration] - - - FrontendPorts - - - - List`1[PSApplicationGatewayFrontendPort] - - - BackendAddressPools - - - - List`1[PSApplicationGatewayBackendAddressPool] - - - BackendHttpSettingsCollection - - - - List`1[PSApplicationGatewayBackendHttpSettings] - - - HttpListeners - - - - List`1[PSApplicationGatewayHttpListener] - - - RequestRoutingRules - - - - List`1[PSApplicationGatewayRequestRoutingRule] - - - Tag - - - - Hashtable[] - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Location - - - - String - - String - - - - - - Sku - - - - PSApplicationGatewaySku - - PSApplicationGatewaySku - - - - - - GatewayIPConfigurations - - - - List`1[PSApplicationGatewayIPConfiguration] - - List`1[PSApplicationGatewayIPConfiguration] - - - - - - SslCertificates - - - - List`1[PSApplicationGatewaySslCertificate] - - List`1[PSApplicationGatewaySslCertificate] - - - - - - FrontendIPConfigurations - - - - List`1[PSApplicationGatewayFrontendIPConfiguration] - - List`1[PSApplicationGatewayFrontendIPConfiguration] - - - - - - FrontendPorts - - - - List`1[PSApplicationGatewayFrontendPort] - - List`1[PSApplicationGatewayFrontendPort] - - - - - - BackendAddressPools - - - - List`1[PSApplicationGatewayBackendAddressPool] - - List`1[PSApplicationGatewayBackendAddressPool] - - - - - - BackendHttpSettingsCollection - - - - List`1[PSApplicationGatewayBackendHttpSettings] - - List`1[PSApplicationGatewayBackendHttpSettings] - - - - - - HttpListeners - - - - List`1[PSApplicationGatewayHttpListener] - - List`1[PSApplicationGatewayHttpListener] - - - - - - RequestRoutingRules - - - - List`1[PSApplicationGatewayRequestRoutingRule] - - List`1[PSApplicationGatewayRequestRoutingRule] - - - - - - Tag - - - - Hashtable[] - - Hashtable[] - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayBackendAddressPool - - - - - - - New - AzureApplicationGatewayBackendAddressPool - - - - - - - - New-AzureApplicationGatewayBackendAddressPool - - Name - - - - String - - - BackendIPConfigurationIds - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - New-AzureApplicationGatewayBackendAddressPool - - Name - - - - String - - - BackendIPAddresses - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - New-AzureApplicationGatewayBackendAddressPool - - Name - - - - String - - - BackendFqdns - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - BackendIPConfigurationIds - - - - List`1[String] - - List`1[String] - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendIPAddresses - - - - List`1[String] - - List`1[String] - - - - - - BackendFqdns - - - - List`1[String] - - List`1[String] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayBackendHttpSettings - - - - - - - New - AzureApplicationGatewayBackendHttpSettings - - - - - - - - New-AzureApplicationGatewayBackendHttpSettings - - Name - - - - String - - - Port - - - - Int32 - - - Protocol - - - - String - - - CookieBasedAffinity - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - Port - - - - Int32 - - Int32 - - - - - - Protocol - - - - String - - String - - - - - - CookieBasedAffinity - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayFrontendIPConfig - - - - - - - New - AzureApplicationGatewayFrontendIPConfig - - - - - - - - New-AzureApplicationGatewayFrontendIPConfig - - Name - - - - String - - - PrivateIPAddress - - - - String - - - Subnet - - - - PSSubnet - - - PublicIPAddress - - - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - New-AzureApplicationGatewayFrontendIPConfig - - Name - - - - String - - - PrivateIPAddress - - - - String - - - SubnetId - - - - String - - - PublicIPAddressId - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - PrivateIPAddress - - - - String - - String - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - PublicIPAddress - - - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - SubnetId - - - - String - - String - - - - - - PublicIPAddressId - - - - String - - String - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayFrontendPort - - - - - - - New - AzureApplicationGatewayFrontendPort - - - - - - - - New-AzureApplicationGatewayFrontendPort - - Name - - - - String - - - Port - - - - Int32 - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - Port - - - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayHttpListener - - - - - - - New - AzureApplicationGatewayHttpListener - - - - - - - - New-AzureApplicationGatewayHttpListener - - Name - - - - String - - - FrontendIPConfigurationId - - - - String - - - FrontendPortId - - - - String - - - SslCertificateId - - - - String - - - Protocol - - - - String - - - Profile - - - - AzureProfile - - - - New-AzureApplicationGatewayHttpListener - - Name - - - - String - - - FrontendIPConfiguration - - - - PSApplicationGatewayFrontendIPConfiguration - - - FrontendPort - - - - PSApplicationGatewayFrontendPort - - - SslCertificate - - - - PSApplicationGatewaySslCertificate - - - Protocol - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - FrontendIPConfigurationId - - - - String - - String - - - - - - FrontendPortId - - - - String - - String - - - - - - SslCertificateId - - - - String - - String - - - - - - Protocol - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIPConfiguration - - - - PSApplicationGatewayFrontendIPConfiguration - - PSApplicationGatewayFrontendIPConfiguration - - - - - - FrontendPort - - - - PSApplicationGatewayFrontendPort - - PSApplicationGatewayFrontendPort - - - - - - SslCertificate - - - - PSApplicationGatewaySslCertificate - - PSApplicationGatewaySslCertificate - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayIPConfiguration - - - - - - - New - AzureApplicationGatewayIPConfiguration - - - - - - - - New-AzureApplicationGatewayIPConfiguration - - Name - - - - String - - - SubnetId - - - - String - - - Profile - - - - AzureProfile - - - - New-AzureApplicationGatewayIPConfiguration - - Name - - - - String - - - Subnet - - - - PSSubnet - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - SubnetId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewayRequestRoutingRule - - - - - - - New - AzureApplicationGatewayRequestRoutingRule - - - - - - - - New-AzureApplicationGatewayRequestRoutingRule - - Name - - - - String - - - RuleType - - - - String - - - BackendHttpSettingsId - - - - String - - - HttpListenerId - - - - String - - - BackendAddressPoolId - - - - String - - - Profile - - - - AzureProfile - - - - New-AzureApplicationGatewayRequestRoutingRule - - Name - - - - String - - - RuleType - - - - String - - - BackendHttpSettings - - - - PSApplicationGatewayBackendHttpSettings - - - HttpListener - - - - PSApplicationGatewayHttpListener - - - BackendAddressPool - - - - PSApplicationGatewayBackendAddressPool - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - RuleType - - - - String - - String - - - - - - BackendHttpSettingsId - - - - String - - String - - - - - - HttpListenerId - - - - String - - String - - - - - - BackendAddressPoolId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendHttpSettings - - - - PSApplicationGatewayBackendHttpSettings - - PSApplicationGatewayBackendHttpSettings - - - - - - HttpListener - - - - PSApplicationGatewayHttpListener - - PSApplicationGatewayHttpListener - - - - - - BackendAddressPool - - - - PSApplicationGatewayBackendAddressPool - - PSApplicationGatewayBackendAddressPool - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewaySku - - - - - - - New - AzureApplicationGatewaySku - - - - - - - - New-AzureApplicationGatewaySku - - Name - - - - String - - - Tier - - - - String - - - Capacity - - - - Int32 - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - Tier - - - - String - - String - - - - - - Capacity - - - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureApplicationGatewaySslCertificate - - - - - - - New - AzureApplicationGatewaySslCertificate - - - - - - - - New-AzureApplicationGatewaySslCertificate - - Name - - - - String - - - CertificateFile - - - - String - - - Password - - - - String - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - CertificateFile - - - - String - - String - - - - - - Password - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureLoadBalancer - - Create a new Azure Load Balancer - - - - - New - AzureLoadBalancer - - - - Create a new Azure Load Balancer - - - - New-AzureLoadBalancer - - Name - - The name of the Load Balancer. - - String - - - ResourceGroupName - - The name of the Resource Group in which this Load Balancer will be created. - - String - - - Location - - The Region in which this Load Balancer will be created. - - String - - - FrontendIpConfiguration - - A list of Frontend Ips objects to associate with this Load Balancer. - - List`1[PSFrontendIPConfiguration] - - - BackendAddressPool - - A list of Backend Address Pool objects to associate with this Load Balancer - - List`1[PSBackendAddressPool] - - - Probe - - A list of Probe objects to associate with this Load Balancer. - - List`1[PSProbe] - - - InboundNatRule - - A list of Inbound NAT Rules objects to associated with this Load Balancer. - - List`1[PSInboundNatRule] - - - LoadBalancingRule - - A list of Load Balancing Rule objects to associate with this Load Balancer. - - List`1[PSLoadBalancingRule] - - - Tag - - A dictionary of tags to be associated with this Load Balancer. - - Hashtable[] - - - Force - - Forces the creation of the Load Balancer even if a Load Balancer with the same name already exists. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group in which this Load Balancer will be created. - - String - - String - - - - - - Location - - The Region in which this Load Balancer will be created. - - String - - String - - - - - - FrontendIpConfiguration - - A list of Frontend Ips objects to associate with this Load Balancer. - - List`1[PSFrontendIPConfiguration] - - List`1[PSFrontendIPConfiguration] - - - - - - BackendAddressPool - - A list of Backend Address Pool objects to associate with this Load Balancer - - List`1[PSBackendAddressPool] - - List`1[PSBackendAddressPool] - - - - - - Probe - - A list of Probe objects to associate with this Load Balancer. - - List`1[PSProbe] - - List`1[PSProbe] - - - - - - InboundNatRule - - A list of Inbound NAT Rules objects to associated with this Load Balancer. - - List`1[PSInboundNatRule] - - List`1[PSInboundNatRule] - - - - - - LoadBalancingRule - - A list of Load Balancing Rule objects to associate with this Load Balancer. - - List`1[PSLoadBalancingRule] - - List`1[PSLoadBalancingRule] - - - - - - Tag - - A dictionary of tags to be associated with this Load Balancer. - - Hashtable[] - - Hashtable[] - - - - - - Force - - Forces the creation of the Load Balancer even if a Load Balancer with the same name already exists. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - New-AzureResourceGroup ` - -Name 'SampleRG' ` - -Location "West US" +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + + Direction + + Specifies whether a rule is evaluated on incoming or outgoing traffic. The acceptable values for this parameter are:Inbound and Outbound. + + + Inbound + Outbound + + + + Priority + + Specifies the priority of a rule configuration. The acceptable values for this parameter are:An integer between 100 and 4096. + The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the network protocol that a rule configuration applies to. The acceptable values for this parameter are: -$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 +-- Tcp +-- Udp +-- Wildcard character (*) to match both + + + Tcp + Udp + * + + + + SourceAddressPrefix + + Specifies a source address prefix. The acceptable values for this parameter are: -$vnet = New-AzurevirtualNetwork ` - -Name SampleVNet ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -AddressPrefix 10.0.0.0/16 ` - -Subnet $frontendSubnet,$backendSubnet +-- A CIDR +-- A source IP range +-- A wildcard character (*) to match any IP address. + You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. + + String + + + SourcePortRange + + Specifies a source port or range. This value is expressed as an integer, as a range between 0 and 65535, or as a wildcard character (*) to match any source port. + + String + + + Name + + Specifies the name of a network security rule configuration. + + String + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. This cmdlet adds a network security rule configuration to the object that this parameter specifies. + + PSNetworkSecurityGroup + + + + + + Access + + Specifies whether network traffic is allowed or denied. The acceptable values for this parameter are:Allow and Deny. + + String + + String + + + none + + + Description + + Specifies a description of a network security rule configuration. + + String + + String + + + none + + + DestinationAddressPrefix + + Specifies a destination address prefix. The acceptable values for this parameter are: -$backendNic = New-AzureNetworkInterface ` - -Name LB-Nic-BE ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -PrivateIpAddress 10.0.2.4 ` - -Subnet $backendSubnet +-- A Classless Interdomain Routing (CIDR) address +-- A destination IP address range +-- A wildcard character (*) to match any IP address + You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. + + String + + String + + + none + + + DestinationPortRange + + Specifies a destination port or range. The acceptable values for this parameter are: -$backendNic2 = New-AzureNetworkInterface ` - -Name LB-Nic2-BE ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -PrivateIpAddress 10.0.2.5 ` - -Subnet $backendSubnet +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + String + + + none + + + Direction + + Specifies whether a rule is evaluated on incoming or outgoing traffic. The acceptable values for this parameter are:Inbound and Outbound. + + String + + String + + + none + + + Name + + Specifies the name of a network security rule configuration. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. This cmdlet adds a network security rule configuration to the object that this parameter specifies. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + Priority + + Specifies the priority of a rule configuration. The acceptable values for this parameter are:An integer between 100 and 4096. + The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + + Int32 + + Int32 + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the network protocol that a rule configuration applies to. The acceptable values for this parameter are: -$publicIP = New-AzurePublicIpAddress ` - -Name PublicIp ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - –AllocationMethod Dynamic ` - -DomainNameLabel samplelbip +-- Tcp +-- Udp +-- Wildcard character (*) to match both + + String + + String + + + none + + + SourceAddressPrefix + + Specifies a source address prefix. The acceptable values for this parameter are: -$frontendIP = New-AzureLoadBalancerFrontendIpConfig ` - -Name LB-Frontend ` - -PublicIpAddress $publicIP +-- A CIDR +-- A source IP range +-- A wildcard character (*) to match any IP address. + You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. + + String + + String + + + none + + + SourcePortRange + + Specifies a source port or range. This value is expressed as an integer, as a range between 0 and 65535, or as a wildcard character (*) to match any source port. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkSecurityRuleConfig + + + + New-AzureNetworkSecurityRuleConfig + + + + Remove-AzureNetworkSecurityRuleConfig + + + + Set-AzureNetworkSecurityRuleConfig + + + + + + + Add-AzureRouteConfig + + Adds a route to a route table. + + + + + Add + AzureRouteConfig + + + + The Add-AzureRouteConfig cmdlet adds a route to an Azure route table. + + + + Add-AzureRouteConfig + + AddressPrefix + + Specifies the destination, in Classless Interdomain Routing (CIDR) format, to which the route applies. + + String + + + NextHopIpAddress + + Specifies the IP address of a virtual appliance that you add to your Azure virtual network. This route forwards packets to that address. Specify this parameter only if you specify a value of VirtualAppliance for the NextHopType parameter. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies a name of the route to add to the route table. + + String + + + NextHopType + + Specifies how this route forwards packets. Valid values are: -$backendAddressPool = New-AzureLoadBalancerBackendAddressPoolConfig ` - -Name LB-BEPool ` - -$inboundNatRule = New-AzureLoadBalancerInboundNatRuleConfig ` - -Name LB-InboundNATRule ` - -FrontendIPConfiguration $frontendIP ` - -Protocol Tcp ` - -FrontendPort 3389 ` - -BackendPort 3389 ` - -IdleTimeoutInMinutes 15 +-- Internet. The default Internet gateway provided by Azure. +-- None. If you specify this value, the route does not forward packets. +-- VirtualAppliance. A virtual appliance that you add to your Azure virtual network. +-- VirtualNetworkGateway. An Azure server-to-server virtual private network gateway. +-- VnetLocal. The local virtual network. If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, select a value of VnetLocal for each subnet to forward to the other subnet. + + + Internet + None + VirtualAppliance + VirtualNetworkGateway + VnetLocal + + + + RouteTable + + Specifies the route table to which this cmdlet adds a route. + + PSRouteTable + + + + + + AddressPrefix + + Specifies the destination, in Classless Interdomain Routing (CIDR) format, to which the route applies. + + String + + String + + + none + + + Name + + Specifies a name of the route to add to the route table. + + String + + String + + + none + + + NextHopIpAddress + + Specifies the IP address of a virtual appliance that you add to your Azure virtual network. This route forwards packets to that address. Specify this parameter only if you specify a value of VirtualAppliance for the NextHopType parameter. + + String + + String + + + none + + + NextHopType + + Specifies how this route forwards packets. Valid values are: -$probe = New-AzureLoadBalancerProbeConfig ` - -Name LB-Probe ` - -RequestPath healthcheck.aspx ` - -Protocol http ` - -Port 80 ` - -IntervalInSeconds 15 ` - -ProbeCount 2 +-- Internet. The default Internet gateway provided by Azure. +-- None. If you specify this value, the route does not forward packets. +-- VirtualAppliance. A virtual appliance that you add to your Azure virtual network. +-- VirtualNetworkGateway. An Azure server-to-server virtual private network gateway. +-- VnetLocal. The local virtual network. If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, select a value of VnetLocal for each subnet to forward to the other subnet. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + Specifies the route table to which this cmdlet adds a route. + + PSRouteTable + + PSRouteTable + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Add a route to a route table + + + + + PS C:\>$RouteTable = Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" +PS C:\> Add-AzureRouteConfig -Name "route13" -AddressPrefix 10.3.0.0/16 -NextHopType VnetLocal -RouteTable $RouteTable -$lbrule = New-AzureLoadBalancerRuleConfig ` - -Name LB-LBRule ` - -FrontendIPConfiguration $frontendIP ` - -BackendAddressPool $backendAddressPool ` - -Probe $probe ` - -Protocol Tcp ` - -FrontendPort 80 ` - -BackendPort 80 ` - -IdleTimeoutInMinutes 15 + + + The first command gets a route table named routetable01 by using the Get-AzureRouteTable cmdlet. The command stores the table in the $RouteTable variable. + The second command adds a route named route13 to the route table stored in $RouteTable. This route forwards packets to the local virtual network. + + + + + + + + + + + Example 2: Add a route to a route table by using the pipeline + + + + + PS C:\>Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" | Add-AzureRouteConfig -Name "route02" -AddressPrefix 10.2.0.0/16 -NextHopType VnetLocal | Set-AzureRouteTable +Name : routetable01 +ResourceGroupName : ResourceGroup11 +Location : eastus +Id : /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Microsoft.Networ + k/routeTables/routetable01 +Etag : W/"f13e1bc8-d41f-44d0-882d-b8b5a1134f59" +ProvisioningState : Succeeded +Tags : +Routes : [ + { + "Name": "route07", + "Etag": "W/\"f13e1bc8-d41f-44d0-882d-b8b5a1134f59\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route07", + "AddressPrefix": "10.1.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + }, + { + "Name": "route02", + "Etag": "W/\"f13e1bc8-d41f-44d0-882d-b8b5a1134f59\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route02", + "AddressPrefix": "10.2.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + }, + { + "Name": "route13", + "Etag": null, + "Id": null, + "AddressPrefix": "10.3.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": null + } + ] +Subnets : [] + + + This command gets the route table named routetable01 by using Get-AzureRouteTable. The command passes that table to the current cmdlet by using the pipeline operator. + The current cmdlet adds the route named route02, and then passes the result to the Set-AzureRouteTable cmdlet, which updates the table to reflect your changes. + + + + + + + + + + + + + Get-AzureRouteConfig + + + + Get-AzureRouteTable + + + + New-AzureRouteConfig + + + + Remove-AzureRouteConfig + + + + Set-AzureRouteConfig + + + + Set-AzureRouteTable + + + + + + + Add-AzureVirtualNetworkSubnetConfig + + Adds a subnet configuration to a virtual network. + + + + + Add + AzureVirtualNetworkSubnetConfig + + + + The Add-AzureVirtualNetworkSubnetConfig cmdlet adds a subnet configuration to an existing Azure virtual network. + + + + Add-AzureVirtualNetworkSubnetConfig + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. This cmdlet adds a virtual network subnet configuration to the object that this parameter specifies. + + PSNetworkSecurityGroup + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + RouteTable + + + + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + + Name + + Specifies the name of the subnet configuration to add. + + String + + + VirtualNetwork + + Specifies the VirtualNetwork object in which to add a subnet configuration. + + PSVirtualNetwork + + + + Add-AzureVirtualNetworkSubnetConfig + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + RouteTableId + + + + + System.String + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + + Name + + Specifies the name of the subnet configuration to add. + + String + + + VirtualNetwork + + Specifies the VirtualNetwork object in which to add a subnet configuration. + + PSVirtualNetwork + + + + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + String + + + none + + + Name + + Specifies the name of the subnet configuration to add. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. This cmdlet adds a virtual network subnet configuration to the object that this parameter specifies. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + + + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + none + + + RouteTableId + + + + + System.String + + System.String + + + none + + + VirtualNetwork + + Specifies the VirtualNetwork object in which to add a subnet configuration. + + PSVirtualNetwork + + PSVirtualNetwork + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetworkSubnetConfig + + + + New-AzureVirtualNetworkSubnetConfig + + + + Remove-AzureVirtualNetworkSubnetConfig + + + + Set-AzureVirtualNetworkSubnetConfig + + + + + + + Get-AzureApplicationGatewayBackendAddressPool + + Gets a back-end address pool for an application gateway. + + + + + Get + AzureApplicationGatewayBackendAddressPool + + + + + + + Get-AzureApplicationGatewayBackendAddressPool + + Name + + Specifies the name of the back-end address pool that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + The Get-AzureApplicationGatewayBackendAddressPool cmdlet gets a back-end address pool for an application gateway. + + PSApplicationGateway + + + + + + ApplicationGateway + + The Get-AzureApplicationGatewayBackendAddressPool cmdlet gets a back-end address pool for an application gateway. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the back-end address pool that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool> + + + + + + + + + + + + + + + Example 1: Get a specified back-end server pool + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $BackendPool = Get-AzureApplicationGatewayBackendAddressPool -Name "Pool01" -ApplicationGateway $AppGw + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command gets the back-end address pool associated with $AppGw named Pool01 and stores it in the $BackendPool variable. + + + + + + + + + + + Example 2: Get a list of back-end server pool + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $BackendPools = Get-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $AppGw -New-AzureLoadBalancer ` - -Name LB ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -FrontendIpConfiguration $frontendIP ` - -BackendAddressPool $backendAddressPool ` - -Probe $probe ` - -InboundNatRule $inboundNatRule ` - -LoadBalancingRule $lbrule - - - - - - - - - - - - - - - - - - - - - - New-AzureLoadBalancerBackendAddressPoolConfig - - Create a new Backend Address Pool for an Azure Load Balancer - - - - - New - AzureLoadBalancerBackendAddressPoolConfig - - - - Create a new Backend Address Pool for an Azure Load Balancer - - - - New-AzureLoadBalancerBackendAddressPoolConfig - - Name - - The name of the Backend Address Pool. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Backend Address Pool. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendIpConfigurationId - - A list of Backend Ip config Id's to associate with this. - - list`1[string] - - list`1[string] - - - - - - BackendIpConfiguration - - A list of Ips to associate with the Backend Address Pool. - - list`1[psnetworkinterfaceipconfiguration] - - list`1[psnetworkinterfaceipconfiguration] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureLoadBalancerFrontendIpConfig - - Create a new Frontend Ip Config for an Azure Load Balancer - - - - - New - AzureLoadBalancerFrontendIpConfig - - - - Create a new Frontend Ip Config for an Azure Load Balancer - - - - New-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip. - - String - - - PrivateIpAddress - - The private Ip address of the load balancer. - This can be specified only if a subnet is specified - - String - - - SubnetId - - The Id of the Subnet in which this Frontend Ip will be created. - - String - - - PublicIpAddressId - - The Id of the Public Ip Address to associate with this Frontend Ip. - - String - - - Profile - - - - AzureProfile - - - - New-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip. - - String - - - PrivateIpAddress - - The private Ip address of the load balancer. - This can be specified only if a subnet is specified - - String - - - Subnet - - The Subnet object within which this Frontend Ip will be created. - - PSSubnet - - - PublicIpAddress - - The Public Ip Address object to associate with this Frontend Ip. - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Frontend Ip. - - String - - String - - - - - - PrivateIpAddress - - The private Ip address of the load balancer. - This can be specified only if a subnet is specified - - String - - String - - - - - - SubnetId - - The Id of the Subnet in which this Frontend Ip will be created. - - String - - String - - - - - - PublicIpAddressId - - The Id of the Public Ip Address to associate with this Frontend Ip. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - The Subnet object within which this Frontend Ip will be created. - - PSSubnet - - PSSubnet - - - - - - PublicIpAddress - - The Public Ip Address object to associate with this Frontend Ip. - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureLoadBalancerInboundNatRuleConfig - - Create a new Inbound NAT rule for an Azure Load Balancer - - - - - New - AzureLoadBalancerInboundNatRuleConfig - - - - Create a new Inbound NAT rule for an Azure Load Balancer - - - - New-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Frontend Ip configuration to remove. - - String - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Inbound NAT Rule. - - String - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer NAT Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - New-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Frontend Ip configuration to remove. - - String - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Inbound NAT Rule. - - PSFrontendIPConfiguration - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer NAT Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Frontend Ip configuration to remove. - - String - - String - - - - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Inbound NAT Rule. - - String - - String - - - - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - String - - - - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - Int32 - - - - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - Int32 - - - - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - Int32 - - - - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer NAT Rule. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Inbound NAT Rule. - - PSFrontendIPConfiguration - - PSFrontendIPConfiguration - - - - - - BackendIpConfigurationId - - The Id of a Backend Ip Configuration to associate with this Inbound NAT Rule. - - string - - string - - - - - - BackendIpConfiguration - - The Backend Ip Configuration to associate with this Inbound NAT Rule. - - psnetworkinterfaceipconfiguration - - psnetworkinterfaceipconfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureLoadBalancerProbeConfig - - Create a new Probe Configuration for an Azure Load Balancer - - - - - New - AzureLoadBalancerProbeConfig - - - - Create a new Probe Configuration for an Azure Load Balancer - - - - New-AzureLoadBalancerProbeConfig - - Name - - The name of the Probe configuration. - - String - - - RequestPath - - The path within the load balanced service to probe to determine health. - - String - - - Protocol - - The protocol to use for the probing. - Options: Tcp or Http. - - String - - - Port - - The port on which probes should connect to the load balanced service. - - Int32 - - - IntervalInSeconds - - The interval between probes to each instance of the load balanced service. - - Int32 - - - ProbeCount - - The number of per-instance consecutive failures for an instance to be considered unhealthy. - - Int32 - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Probe configuration. - - String - - String - - - - - - RequestPath - - The path within the load balanced service to probe to determine health. - - String - - String - - - - - - Protocol - - The protocol to use for the probing. - Options: Tcp or Http. - - String - - String - - - - - - Port - - The port on which probes should connect to the load balanced service. - - Int32 - - Int32 - - - - - - IntervalInSeconds - - The interval between probes to each instance of the load balanced service. - - Int32 - - Int32 - - - - - - ProbeCount - - The number of per-instance consecutive failures for an instance to be considered unhealthy. - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureLoadBalancerRuleConfig - - Create a new Load Balancing Rule for an Azure Load Balancer - - - - - New - AzureLoadBalancerRuleConfig - - - - Create a new Load Balancing Rule for an Azure Load Balancer - - - - New-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancing Rule. - - String - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Load Balancer Rule. - - String - - - BackendAddressPoolId - - The Id of a Backend Address Pool to associate with this Load Balancer Rule. - - String - - - ProbeId - - The Id of the Probe to associate with this Load Balancer Rule. - - String - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp - - String - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - - EnableFloatingIP - - Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - New-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancing Rule. - - String - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Load Balancer Rule. - - PSFrontendIPConfiguration - - - BackendAddressPool - - The Backend Address Pool to associate with this Load Balancer Rule. - - PSBackendAddressPool - - - Probe - - The Probe to associate with this Load Balancer Rule. - - PSProbe - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp - - String - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - - EnableFloatingIP - - Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancing Rule. - - String - - String - - - - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Load Balancer Rule. - - String - - String - - - - - - BackendAddressPoolId - - The Id of a Backend Address Pool to associate with this Load Balancer Rule. - - String - - String - - - - - - ProbeId - - The Id of the Probe to associate with this Load Balancer Rule. - - String - - String - - - - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp - - String - - String - - - - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - Int32 - - - - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - Int32 - - - - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - Int32 - - - - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - String - - - - - - EnableFloatingIP - - Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Load Balancer Rule. - - PSFrontendIPConfiguration - - PSFrontendIPConfiguration - - - - - - BackendAddressPool - - The Backend Address Pool to associate with this Load Balancer Rule. - - PSBackendAddressPool - - PSBackendAddressPool - - - - - - Probe - - The Probe to associate with this Load Balancer Rule. - - PSProbe - - PSProbe - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureLocalNetworkGateway - - - - - - - New - AzureLocalNetworkGateway - - - - - - - - New-AzureLocalNetworkGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Location - - - - String - - - GatewayIpAddress - - - - String - - - AddressPrefix - - - - List`1[String] - - - Tag - - - - Hashtable[] - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Location - - - - String - - String - - - - - - GatewayIpAddress - - - - String - - String - - - - - - AddressPrefix - - - - List`1[String] - - List`1[String] - - - - - - Tag - - - - Hashtable[] - - Hashtable[] - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureNetworkInterface - - Create a new Network Interface - - - - - New - AzureNetworkInterface - - - - Create a new Network Interface - - - - New-AzureNetworkInterface - - Name - - The name of the Network Interface. - - String - - - ResourceGroupName - - The name of the Resource Group in which this Network Interface will be created. - - String - - - Location - - The Region in which this Network Interface will be created. - - String - - - PrivateIpAddress - - The static Ipv4 Ip address to be assigned to this Network Interface. Optional - - String - - - SubnetId - - The Id of the Subnet resource in which this Network Interface will be created. - - String - - - PublicIpAddressId - - The Id of the Public Ip Address resource to assign to this Network Interface. - - String - - - NetworkSecurityGroupId - - The Network Security Group object containing ACLs that will apply to this NIC. - - String - - - LoadBalancerBackendAddressPoolId - - A reference to a Load Balancer Address Pool to which this NIC will be added. - - List`1[String] - - - LoadBalancerInboundNatRuleId - - A reference to a Load Balancer Inbound Nat Rule to which this NIC will be added. - - List`1[String] - - - IpConfigurationName - - The name of Ip Configuration. - - String - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this NIC. - - List`1[String] - - - InternalDnsNameLabel - - List of DNS servers IP addresses. - - String - - - EnableIPForwarding - - Enables/disable IP forwarding on this Nic. - - SwitchParameter - - - Tag - - A dictionary of tags to be associated with this Network Interface. - - - Hashtable[] - - - Force - - Forces the creation of the Network Interface even if a Network Interface with the same name already exists. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - New-AzureNetworkInterface - - Name - - The name of the Network Interface. - - String - - - ResourceGroupName - - The name of the Resource Group in which this Network Interface will be created. - - String - - - Location - - The Region in which this Network Interface will be created. - - String - - - PrivateIpAddress - - The static Ipv4 Ip address to be assigned to this Network Interface. Optional - - String - - - Subnet - - The Subnet object in which this Network Interface will be created. - - PSSubnet - - - PublicIpAddress - - The Public Ip Address object to assign to this Network Interface. - - PSPublicIpAddress - - - NetworkSecurityGroup - - A reference to a Network Security Group object containing ACLs that will apply to this NIC. - - PSNetworkSecurityGroup - - - LoadBalancerBackendAddressPool - - A Load Balancer Address Pool object to which this NIC will be added. - - List`1[PSBackendAddressPool] - - - LoadBalancerInboundNatRule - - A Load Balancer Inbound Nat Rule object to which this NIC will be added. - - List`1[PSInboundNatRule] - - - IpConfigurationName - - The name of Ip Configuration. - - String - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this NIC. - - List`1[String] - - - InternalDnsNameLabel - - List of DNS servers IP addresses. - - String - - - EnableIPForwarding - - Enables/disable IP forwarding on this Nic. - - SwitchParameter - - - Tag - - A dictionary of tags to be associated with this Network Interface. - - - Hashtable[] - - - Force - - Forces the creation of the Network Interface even if a Network Interface with the same name already exists. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Interface. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group in which this Network Interface will be created. - - String - - String - - - - - - Location - - The Region in which this Network Interface will be created. - - String - - String - - - - - - PrivateIpAddress - - The static Ipv4 Ip address to be assigned to this Network Interface. Optional - - String - - String - - - - - - SubnetId - - The Id of the Subnet resource in which this Network Interface will be created. - - String - - String - - - - - - PublicIpAddressId - - The Id of the Public Ip Address resource to assign to this Network Interface. - - String - - String - - - - - - NetworkSecurityGroupId - - The Network Security Group object containing ACLs that will apply to this NIC. - - String - - String - - - - - - LoadBalancerBackendAddressPoolId - - A reference to a Load Balancer Address Pool to which this NIC will be added. - - List`1[String] - - List`1[String] - - - - - - LoadBalancerInboundNatRuleId - - A reference to a Load Balancer Inbound Nat Rule to which this NIC will be added. - - List`1[String] - - List`1[String] - - - - - - IpConfigurationName - - The name of Ip Configuration. - - String - - String - - - - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this NIC. - - List`1[String] - - List`1[String] - - - - - - InternalDnsNameLabel - - List of DNS servers IP addresses. - - String - - String - - - - - - EnableIPForwarding - - Enables/disable IP forwarding on this Nic. - - SwitchParameter - - SwitchParameter - - - - - - Tag - - A dictionary of tags to be associated with this Network Interface. - - - Hashtable[] - - Hashtable[] - - - - - - Force - - Forces the creation of the Network Interface even if a Network Interface with the same name already exists. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - The Subnet object in which this Network Interface will be created. - - PSSubnet - - PSSubnet - - - - - - PublicIpAddress - - The Public Ip Address object to assign to this Network Interface. - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - NetworkSecurityGroup - - A reference to a Network Security Group object containing ACLs that will apply to this NIC. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - LoadBalancerBackendAddressPool - - A Load Balancer Address Pool object to which this NIC will be added. - - List`1[PSBackendAddressPool] - - List`1[PSBackendAddressPool] - - - - - - LoadBalancerInboundNatRule - - A Load Balancer Inbound Nat Rule object to which this NIC will be added. - - List`1[PSInboundNatRule] - - List`1[PSInboundNatRule] - - - - - - AllocationMethod - - How Ips are assigned to this Network Interface. Options: Static or Dynamic - - string - - string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - New-AzureResourceGroup ` - -Name 'SampleRG' ` - -Location "West US" + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command gets a list of the the back-end address pools associated with $AppGw, and stores the list in the $BackendPools variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendAddressPool + + + + New-AzureApplicationGatewayBackendAddressPool + + + + Remove-AzureApplicationGatewayBackendAddressPool + + + + Set-AzureApplicationGatewayBackendAddressPool + + + + + + + Get-AzureApplicationGatewayBackendHttpSettings + + Gets the back-end HTTP settings of an application gateway. + + + + + Get + AzureApplicationGatewayBackendHttpSettings + + + + The Get-AzureApplicationGatewayBackendHttpSettings cmdlet gets the back-end HTTP settings of an application gateway. + + + + Get-AzureApplicationGatewayBackendHttpSettings + + Name + + Specifies the name of the backend HTTP settings that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies an application gateway object that contains back-end HTTP settings. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies an application gateway object that contains back-end HTTP settings. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the backend HTTP settings that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.AzureApplicationGatewayBackendHttpSettings + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.AzureApplicationGatewayBackendHttpSettings> + + + + + + + + + + + + + + + Example 1: Get back-end HTTP settings by name + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Settings = Get-AzureApplicationGatewayBackendHttpSettings -Name "Settings01" -ApplicationGateway $AppGw + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command gets the HTTP settings named Settings01 for $AppGw and stores the settings in the $Settings variable. + + + + + + + + + + + Example 2: Get a collection of back-end HTTP settings + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $SettingsList = Get-AzureApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command gets the collection of HTTP settings for $AppGw and stores the settings in the $SettingsList variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendHttpSettings + + + + New-AzureApplicationGatewayBackendHttpSettings + + + + Remove-AzureApplicationGatewayBackendHttpSettings + + + + Set-AzureApplicationGatewayBackendHttpSettings + + + + + + + Get-AzureApplicationGatewayFrontendIPConfig + + Gets the front-end IP configuration of an application gateway. + + + + + Get + AzureApplicationGatewayFrontendIPConfig + + + + The Get-AzureApplicationGatewayFrontendIPConfig cmdlet gets the front-end IP configuration of an application gateway. + + + + Get-AzureApplicationGatewayFrontendIPConfig + + Name + + Specifies the name of the front-end IP configuration that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object that contains the front-end IP configuration. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object that contains the front-end IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the front-end IP configuration that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration> + + + + + + + + + + + + + + + Example 1: Get a specified front-end IP configuration + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $FrontEndIP= Get-AzureApplicationGatewayFrontendIPConfig -Name "FrontEndIP01" -ApplicationGateway $AppGw + + + The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command gets the front-end IP configuration named FrontEndIP01 from $AppGw and stores it in the $FrontEndIP variable. + + + + + + + + + + + Example 2: Get a list of front-end IP configurations + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $FrontEndIPs= Get-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw + + + The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command gets a list of the front-end IP configurations from $AppGw and stores it in the $FrontEndIPs variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendIPConfig + + + + New-AzureApplicationGatewayFrontendIPConfig + + + + Remove-AzureApplicationGatewayFrontendIPConfig + + + + Set-AzureApplicationGatewayFrontendIPConfig + + + + + + + Get-AzureApplicationGatewayFrontendPort + + Gets the front-end port of an application gateway. + + + + + Get + AzureApplicationGatewayFrontendPort + + + + The Get-AzureApplicationGatewayFrontendPort cmdlet gets the front-end port of an application gateway. + + + + Get-AzureApplicationGatewayFrontendPort + + Name + + Specifies the name of the front-end port to get. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object that contains the front-end port. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object that contains the front-end port. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the front-end port to get. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort> + + + + + + + + + + + + + + + 1: Get a specified front-end port + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $FrontEndPort = Get-AzureApplicationGatewayFrontendIPort -Name "FrontEndPort01" -ApplicationGateway $AppGw + + + The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command gets the front-end port named FrontEndPort01 from $AppGw and stores it in the $FrontEndPort variable. + + + + + + + + + + + 2: Get a list of front-end ports + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $FrontEndPorts = Get-AzureApplicationGatewayFrontendIPort -ApplicationGateway $AppGw + + + The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command gets a list of the front-end ports from $AppGw and stores it in the $FrontEndPorts variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendPort + + + + New-AzureApplicationGatewayFrontendPort + + + + Remove-AzureApplicationGatewayFrontendPort + + + + Set-AzureApplicationGatewayFrontendPort + + + + + + + Get-AzureApplicationGatewayHttpListener + + Gets the HTTP listener of an application gateway. + + + + + Get + AzureApplicationGatewayHttpListener + + + + The Get-AzureApplicationGatewayHttpListener cmdlet gets the HTTP listener of an application gateway. + + + + Get-AzureApplicationGatewayHttpListener + + Name + + Specifies the name of the HTTP listener which this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object that contains the HTTP listener. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object that contains the HTTP listener. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the HTTP listener which this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener> + + + + + + + + + + + + + + + Example 1: Get a specific HTTP listener + + + + + PS C:\>$Appgw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Listener = Get-AzureApplicationGatewayHttpListener -Name "Listener01" -ApplicationGateway $Appgw -$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 + + + This command gets an HTTP listener named Listener01. + + + + + + + + + + + Example 2: Get a list of HTTP listeners + + + + + PS C:\>$Appgw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Listeners = Get-AzureApplicationGatewayHttpListener -ApplicationGateway $Appgw + + + This command gets a list of HTTP listeners. + + + + + + + + + + + + + Add-AzureApplicationGatewayHttpListener + + + + New-AzureApplicationGatewayHttpListener + + + + Remove-AzureApplicationGatewayHttpListener + + + + Set-AzureApplicationGatewayHttpListener + + + + + + + Get-AzureApplicationGatewayIPConfiguration + + Gets the IP configuration of an application gateway. + + + + + Get + AzureApplicationGatewayIPConfiguration + + + + The Get-AzureApplicationGatewayIPConfiguration cmdlet gets the IP configuration of an application gateway. The IP configuration contains the subnet in which the application gateway is deployed. + + + + Get-AzureApplicationGatewayIPConfiguration + + Name + + Specifies the name of the IP configuration which this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object that contains IP configuration. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object that contains IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the IP configuration which this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration> + + + + + + + + + + + + + + + Example 1: Get a specific IP configuration + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName “ResourceGroup01” +PS C:\> $GatewaySubnet = Get-AzureApplicationGatewayIPConfiguration -Name "GatewaySubnet01" -ApplicationGateway $AppGw + + + The first command gets an application gateway and stores it in the $AppGw variable. + The second command gets an IP configuration named GateSubnet01 from the gateway stored in $AppGw. + + + + + + + + + + + Example 2: Get a list of IP configurations + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $GatewaySubnets = Get-AzureApplicationGatewayIPConfiguration -ApplicationGateway $AppGw + + + The first command gets an application gateway and stores it in the $AppGw variable. + The second command gets a list of all IP configurations. + + + + + + + + + + + + + Add-AzureApplicationGatewayIPConfiguration + + + + New-AzureApplicationGatewayIPConfiguration + + + + Remove-AzureApplicationGatewayIPConfiguration + + + + Set-AzureApplicationGatewayIPConfiguration + + + + + + + Get-AzureApplicationGatewayRequestRoutingRule + + Gets the request routing rule of an application gateway. + + + + + Get + AzureApplicationGatewayRequestRoutingRule + + + + The Get-AzureApplicationGatewayRequestRoutingRule cmdlet gets the request routing rule of an application gateway. + + + + Get-AzureApplicationGatewayRequestRoutingRule + + Name + + Specifies the name of the request routing rule which this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object that contains request routing rule. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object that contains request routing rule. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the request routing rule which this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule> + + + + + + + + + + + + + + + Example 1: Get a specific request routing rule + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Rule = Get-AzureApplicationGatewayRequestRoutingRule -"Rule01" -ApplicationGateway $AppGW + + + This command gets the request routing rule named Rule01. + + + + + + + + + + + Example 2: Get a list of request routing rules + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Rules = Get-AzureApplicationGatewayRequestRoutingRule -ApplicationGateway $AppGW + + + This command gets a list of request routing rules. + + + + + + + + + + + + + Add-AzureApplicationGatewayRequestRoutingRule + + + + New-AzureApplicationGatewayRequestRoutingRule + + + + Remove-AzureApplicationGatewayRequestRoutingRule + + + + Set-AzureApplicationGatewayRequestRoutingRule + + + + + + + Get-AzureApplicationGatewaySku + + Gets the SKU of an application gateway. + + + + + Get + AzureApplicationGatewaySku + + + + The Get-AzureApplicationGatewaySku cmdlet gets the stock keeping unit (SKU) of an application gateway. + + + + Get-AzureApplicationGatewaySku + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku + + + + + + + + + + + + + + + Example 1: Get an application gateway SKU + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $SKU = Get-AzureApplicationGatewaySku -ApplicationGateway $AppGW -$vnet = New-AzurevirtualNetwork ` - -Name SampleVNet ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -AddressPrefix 10.0.0.0/16 ` - -Subnet $frontendSubnet,$backendSubnet + + + This command gets the SKU of an application gateway named ApplicationGateway01. + + + + + + + + + + + + + New-AzureApplicationGatewaySku + + + + Set-AzureApplicationGatewaySku + + + + + + + Get-AzureApplicationGatewaySslCertificate + + Gets an SSL certificate for an application gateway. + + + + + Get + AzureApplicationGatewaySslCertificate + + + + The Get-AzureApplicationGatewaySslCertificate cmdlet gets an SSL certificate for an application gateway. + + + + Get-AzureApplicationGatewaySslCertificate + + Name + + Specifies the name of SSL certificate pool that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object that contains the SSL certificate. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway object that contains the SSL certificate. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of SSL certificate pool that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate> + + + + + + + + + + + + + + + Example 1: Get a specific SSL certificate + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Cert = Get-AzureApplicationGatewaySslCertificate -Name "Cert01" -ApplicationGateway $AppGW + + + This command gets the SSL certificate named Cert01 from the application gateway named ApplicationGateway01. + + + + + + + + + + + Example 2: Get a list of SSL certificates + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Certs = Get-AzureApplicationGatewaySslCertificate -ApplicationGateway $AppGW + + + This command gets a list of SSL certificates from the application gateway named ApplicationGateway01. + + + + + + + + + + + + + Add-AzureApplicationGatewaySslCertificate + + + + New-AzureApplicationGatewaySslCertificate + + + + Remove-AzureApplicationGatewaySslCertificate + + + + Set-AzureApplicationGatewaySslCertificate + + + + + + + Get-AzureApplicationGateway + + Gets an application gateway. + + + + + Get + AzureApplicationGateway + + + + The Get-AzureApplicationGateway cmdlet gets an application gateway. + + + + Get-AzureApplicationGateway + + Name + + Specifies the name of the application gateway that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ResourceGroupName + + Specifies the name of the resource group that contains the application gateway. + + String + + + + + + Name + + Specifies the name of the application gateway that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the application gateway. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + IEnumerable<Microsoft.Azure.Commands.Network.Models.PSApplicationGateway> + + + + + + + + + + + + + + + Example 1: Get a specified application gateway + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" + + + This command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + + + + + + + + + + + Example 2: Get a list of application gateways in a resource group + + + + + PS C:\> $AppGwList = Get-AzureApplicationGateway -ResourceGroupName "ResourceGroup01" + + + This command gets a list of all the application gateways in the resource group named ResourceGroup01 and stores it in the $AppGwList variable. + + + + + + + + + + + Example 3: Get a list of application gateways in a subscription + + + + + PS C:\> $AppGwList = Get-AzureApplicationGateway + + + This command gets a list of all the application gateways in the subscription and stores it in the $AppGwList variable. + + + + + + + + + + + + + Stop-AzureApplicationGateway + + + + + + + Get-AzureLoadBalancerBackendAddressPoolConfig + + Gets a backend address pool configuration for a load balancer. + + + + + Get + AzureLoadBalancerBackendAddressPoolConfig + + + + The Get-AzureLoadBalancerBackendAddressPoolConfig cmdlet gets a single backend address pool or a list of backend address pools within a load balancer. + + + + Get-AzureLoadBalancerBackendAddressPoolConfig + + Name + + Specifies the name of the load balancer that contains the backend address pool to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that is associated with the backend address pool to get. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that is associated with the backend address pool to get. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the load balancer that contains the backend address pool to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerBackendAddressPoolConfig + + + + New-AzureLoadBalancerBackendAddressPoolConfig + + + + Remove-AzureLoadBalancerBackendAddressPoolConfig + + + + + + + Get-AzureLoadBalancerFrontendIpConfig + + Gets a front-end IP configuration in a load balancer. + + + + + Get + AzureLoadBalancerFrontendIpConfig + + + + The Get-AzureLoadBalancerFrontendIpConfig cmdlet gets a front-end IP configuration or a list of front-end IP configurations in a load balancer. + + + + Get-AzureLoadBalancerFrontendIpConfig + + Name + + Specifies the name of the load balancer that contains the front-end IP configuration to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that is associated with the front-end IP configuration to get. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that is associated with the front-end IP configuration to get. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the load balancer that contains the front-end IP configuration to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerFrontendIpConfig + + + + New-AzureLoadBalancerFrontendIpConfig + + + + Remove-AzureLoadBalancerFrontendIpConfig + + + + Set-AzureLoadBalancerFrontendIpConfig + + + + + + + Get-AzureLoadBalancerInboundNatRuleConfig + + Gets an inbound NAT rule configuration for a load balancer. + + + + + Get + AzureLoadBalancerInboundNatRuleConfig + + + + The Get-AzureLoadBalancerInboundNatRuleConfig cmdlet gets one or more inbound network address translation (NAT) rules in an Azure load balancer. + + + + Get-AzureLoadBalancerInboundNatRuleConfig + + Name + + Specifies the name of the inbound NAT rule configuration to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that is associated with the inbound NAT rule configuration to get. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that is associated with the inbound NAT rule configuration to get. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the inbound NAT rule configuration to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + + + New-AzureLoadBalancerInboundNatRuleConfig + + + + Remove-AzureLoadBalancerInboundNatRuleConfig + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + + + + + + Get-AzureLoadBalancerProbeConfig + + Gets a probe configuration for a load balancer. + + + + + Get + AzureLoadBalancerProbeConfig + + + + The Get-AzureLoadBalancerProbeConfig cmdlet gets one or more probe configurations for a load balancer. + + + + Get-AzureLoadBalancerProbeConfig + + Name + + Specifies the name of the probe configuration to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that is associated with the probe configuration to get. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that is associated with the probe configuration to get. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the probe configuration to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerProbeConfig + + + + New-AzureLoadBalancerProbeConfig + + + + Remove-AzureLoadBalancerProbeConfig + + + + Set-AzureLoadBalancerProbeConfig + + + + + + + Get-AzureLoadBalancerRuleConfig + + Gets the rule configuration for a load balancer. + + + + + Get + AzureLoadBalancerRuleConfig + + + + The Get-AzureLoadBalancerRuleConfig cmdlet gets one or more rule configurations for a load balancer. + + + + Get-AzureLoadBalancerRuleConfig + + Name + + Specifies the name of the rule configuration to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that is associated with the rule configuration to get. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that is associated with the rule configuration to get. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the rule configuration to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerRuleConfig + + + + New-AzureLoadBalancerRuleConfig + + + + Remove-AzureLoadBalancerRuleConfig + + + + Set-AzureLoadBalancerRuleConfig + + + + + + + Get-AzureLoadBalancer + + Gets a load balancer. + + + + + Get + AzureLoadBalancer + + + + The Get-AzureLoadBalancer cmdlet gets one or more Azure load balancers that are contained in a resource group. + + + + Get-AzureLoadBalancer + + Name + + Specifies the name of the load balancer to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + ResourceGroupName + + Specifies the resource group that contains the load balancer to get. + + String + + + + + + Name + + Specifies the name of the load balancer to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the resource group that contains the load balancer to get. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + New-AzureLoadBalancer + + + + Remove-AzureLoadBalancer + + + + Set-AzureLoadBalancer + + + + + + + Get-AzureLocalNetworkGateway + + + + + + + + Get + AzureLocalNetworkGateway + + + + + + + Get-AzureLocalNetworkGateway + + Name + + + String + + + Profile + + + AzureProfile + + + ResourceGroupName + + + String + + + + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkInterface + + Gets a network interface. + + + + + Get + AzureNetworkInterface + + + + The Get-AzureNetworkInterface cmdlet gets an Azure network interface or a list of Azure network interfaces in a resource group. + + + + Get-AzureNetworkInterface + + Name + + Specifies the name of the network interface to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + ResourceGroupName + + Specifies the name of the resource group that contains the network interface to get. + + String + + + + + + Name + + Specifies the name of the network interface to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the network interface to get. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + New-AzureNetworkInterface + + + + Remove-AzureNetworkInterface + + + + Set-AzureNetworkInterface + + + + + + + Get-AzureNetworkSecurityGroup + + Gets a network security group. + + + + + Get + AzureNetworkSecurityGroup + + + + The Get-AzureNetworkSecurityGroup cmdlet gets an Azure network security group. + + + + Get-AzureNetworkSecurityGroup + + Name + + Specifies the name of the network security group to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + ResourceGroupName + + Specifies the name of the resource group that contains the network security group to get. + + String + + + + + + Name + + Specifies the name of the network security group to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the network security group to get. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + New-AzureNetworkSecurityGroup + + + + Remove-AzureNetworkSecurityGroup + + + + Set-AzureNetworkSecurityGroup + + + + + + + Get-AzureNetworkSecurityRuleConfig + + Get a network security rule configuration for a network security group. + + + + + Get + AzureNetworkSecurityRuleConfig + + + + The Get-AzureNetworkSecurityRuleConfig cmdlet gets a network security rule configuration for an Azure network security group. + + + + Get-AzureNetworkSecurityRuleConfig + + DefaultRules + + Indicates whether this cmdlet gets a user-created rule configuration or a default rule configuration. + + + + Name + + Specifies the name of the network security rule configuration to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object that contains the network security rule configuration to get. + + PSNetworkSecurityGroup + + + + + + DefaultRules + + Indicates whether this cmdlet gets a user-created rule configuration or a default rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the network security rule configuration to get. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object that contains the network security rule configuration to get. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureNetworkSecurityRuleConfig + + + + New-AzureNetworkSecurityRuleConfig + + + + Remove-AzureNetworkSecurityRuleConfig + + + + Set-AzureNetworkSecurityRuleConfig + + + + + + + Get-AzurePublicIpAddress + + Gets a public IP address. + + + + + Get + AzurePublicIpAddress + + + + The Get-AzurePublicIPAddress cmdlet gets one or more public IP addresses in a resource group. + + + + Get-AzurePublicIpAddress + + Name + + Specifies the name of the public IP address to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + ResourceGroupName + + Specifies the name of the resource group that contains the public IP address to get. + + String + + + + + + Name + + Specifies the name of the public IP address to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the public IP address to get. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + New-AzurePublicIpAddress + + + + Remove-AzurePublicIpAddress + + + + Set-AzurePublicIpAddress + + + + + + + Get-AzureRouteConfig + + Gets routes from a route table. + + + + + Get + AzureRouteConfig + + + + The Get-AzureRouteConfig cmdlet gets routes from an Azure route table. You can specify a route by name. + + + + Get-AzureRouteConfig + + Name + + Specifies the name of the route that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + RouteTable + + Specifies the route table from which this cmdlet gets routes. + + PSRouteTable + + + + + + Name + + Specifies the name of the route that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + Specifies the route table from which this cmdlet gets routes. + + PSRouteTable + + PSRouteTable + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Get a route table + + + + + PS C:\>Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" | Get-AzureRouteConfig -Name "route07" -$backendNic = New-AzureNetworkInterface ` - -Name LB-Nic-BE ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -PrivateIpAddress 10.0.2.4 ` - -Subnet $backendSubnet - - - - - - - - - - - - - - - - - - - - - - New-AzureNetworkSecurityGroup - - Create a new Network Security Group - - - - - New - AzureNetworkSecurityGroup - - - - Create a new Network Security Group - - - - New-AzureNetworkSecurityGroup - - Name - - The name of the Network Security Group. - - String - - - ResourceGroupName - - The name of the Resource Group in which this Network Security Group will be created. - - String - - - Location - - The Region in which this Network Security Group will be created. - - String - - - SecurityRules - - A list of Network Security Rule objects to create within this Network Security Group. - - List`1[PSSecurityRule] - - - Tag - - A dictionary of tags to be associated with this Network Security Group. - - Hashtable[] - - - Force - - Forces the creation of the Network Security Group even if a Network Security Group with the same name already exists. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Group. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group in which this Network Security Group will be created. - - String - - String - - - - - - Location - - The Region in which this Network Security Group will be created. - - String - - String - - - - - - SecurityRules - - A list of Network Security Rule objects to create within this Network Security Group. - - List`1[PSSecurityRule] - - List`1[PSSecurityRule] - - - - - - Tag - - A dictionary of tags to be associated with this Network Security Group. - - Hashtable[] - - Hashtable[] - - - - - - Force - - Forces the creation of the Network Security Group even if a Network Security Group with the same name already exists. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureNetworkSecurityRuleConfig - - Create a new Network Security Rule within a Network Security Group - - - - - New - AzureNetworkSecurityRuleConfig - - - - Create a new Network Security Rule within a Network Security Group - - - - New-AzureNetworkSecurityRuleConfig - - Name - - The name of the Network Security Rule. - - String - - - Description - - The description of the Network Security Rule. - - String - - - Protocol - - Network protocol this rule applies to. Can be Tcp, Udp or * to match both. - - String - - - SourcePortRange - - Source Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - - DestinationPortRange - - Destination Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - - SourceAddressPrefix - - CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - - DestinationAddressPrefix - - CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - - Access - - Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”. - - String - - - Priority - - Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. - - Int32 - - - Direction - - The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Rule. - - String - - String - - - - - - Description - - The description of the Network Security Rule. - - String - - String - - - - - - Protocol - - Network protocol this rule applies to. Can be Tcp, Udp or * to match both. - - String - - String - - - - - - SourcePortRange - - Source Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - String - - - - - - DestinationPortRange - - Destination Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - String - - - - - - SourceAddressPrefix - - CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - String - - - - - - DestinationAddressPrefix - - CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - String - - - - - - Access - - Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”. - - String - - String - - - - - - Priority - - Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. - - Int32 - - Int32 - - - - - - Direction - - The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzurePublicIpAddress - - Create a new Public Ip Address - - - - - New - AzurePublicIpAddress - - - - Create a new Public Ip Address - - - - New-AzurePublicIpAddress - - Name - - The name of the Public Ip Address. - - String - - - ResourceGroupName - - The name of the Resource Group in which this Public Ip Address will be created. - - String - - - Location - - The Region in which this Public Ip Address will be created. - - String - - - AllocationMethod - - How Ips are assigned to this Public Ip Address. - Options: Static or Dynamic - - String - - - DomainNameLabel - - The relative Dns name for this Public Ip Address. - - String - - - ReverseFqdn - - The Dns Fqdn that you wish to associate with this Public Ip Address. - - String - - - IdleTimeoutInMinutes - - Specifies the timeout for the Tcp idle connection - - Int32 - - - Tag - - A dictionary of tags to be associated with this Public Ip Address. - - Hashtable[] - - - Force - - Force the creation of this Public Ip Address possibly overwriting an existing Public Ip Address. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Public Ip Address. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group in which this Public Ip Address will be created. - - String - - String - - - - - - Location - - The Region in which this Public Ip Address will be created. - - String - - String - - - - - - AllocationMethod - - How Ips are assigned to this Public Ip Address. - Options: Static or Dynamic - - String - - String - - - - - - DomainNameLabel - - The relative Dns name for this Public Ip Address. - - String - - String - - - - - - ReverseFqdn - - The Dns Fqdn that you wish to associate with this Public Ip Address. - - String - - String - - - - - - IdleTimeoutInMinutes - - Specifies the timeout for the Tcp idle connection - - Int32 - - Int32 - - - - - - Tag - - A dictionary of tags to be associated with this Public Ip Address. - - Hashtable[] - - Hashtable[] - - - - - - Force - - Force the creation of this Public Ip Address possibly overwriting an existing Public Ip Address. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - New-AzureResourceGroup ` - -Name 'SampleRG' ` - -Location "West US" +Name : route07 +Id : +Etag : +ProvisioningState : +AddressPrefix : 10.1.0.0/16 +NextHopType : VnetLocal +NextHopIpAddress : + + + This command gets the route table named routetable01 by using the Get-AzureRouteTable cmdlet. The command passes that table to the current cmdlet by using the pipeline operator. The current cmdlet gets the route named route07 in the route table named routetable01. + + + + + + + + + + + + + Add-AzureRouteConfig + + + + Get-AzureRouteTable + + + + New-AzureRouteConfig + + + + Remove-AzureRouteConfig + + + + Set-AzureRouteConfig + + + + + + + Get-AzureRouteTable + + Gets route tables. + + + + + Get + AzureRouteTable + + + + The Get-AzureRouteTable cmdlet gets Azure route tables. You can retrieve a single route table, or retrieve all the route tables in a resource group or in your subscription. + + + + Get-AzureRouteTable + + Name + + Specifies the name of the route table that this cmdlet gets. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ResourceGroupName + + Specifies the name of the resource group that contains the route tables that this cmdlet gets. + + String + + + + + + Name + + Specifies the name of the route table that this cmdlet gets. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the route tables that this cmdlet gets. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Get a route table + + + + + PS C:\>Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" +Name : routetable01 +ResourceGroupName : ResourceGroup11 +Location : eastus +Id : /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Microsoft.Networ + k/routeTables/routetable01 +Etag : W/"db5f4e12-3f34-465b-92dd-0ab3bf6fc274" +ProvisioningState : Succeeded +Tags : +Routes : [ + { + "Name": "route07", + "Etag": "W/\"db5f4e12-3f34-465b-92dd-0ab3bf6fc274\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route07", + "AddressPrefix": "10.1.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + } + ] +Subnets : [] + + + This command gets the route table named routetable01 in the resource group named ResourceGroup11. + + + + + + + + + + + + + New-AzureRouteTable + + + + Remove-AzureRouteTable + + + + Set-AzureRouteTable + + + + + + + Get-AzureVirtualNetworkGatewayConnectionSharedKey + + + + + + + + Get + AzureVirtualNetworkGatewayConnectionSharedKey + + + + + + + Get-AzureVirtualNetworkGatewayConnectionSharedKey + + Name + + + String + + + Profile + + + AzureProfile + + + ResourceGroupName + + + String + + + + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetworkGatewayConnection + + + + + + + + Get + AzureVirtualNetworkGatewayConnection + + + + + + + Get-AzureVirtualNetworkGatewayConnection + + Name + + + String + + + Profile + + + AzureProfile + + + ResourceGroupName + + + String + + + + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetworkGateway + + + + + + + + Get + AzureVirtualNetworkGateway + + + + + + + Get-AzureVirtualNetworkGateway + + Name + + + String + + + Profile + + + AzureProfile + + + ResourceGroupName + + + String + + + + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetworkSubnetConfig + + Gets a subnet in a virtual network. + + + + + Get + AzureVirtualNetworkSubnetConfig + + + + The Get-AzureVirtualNetworkSubnetConfig cmdlet gets one or more subnet configurations in an Azure virtual network. + + + + Get-AzureVirtualNetworkSubnetConfig + + Name + + Specifies the name of the subnet configuration to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration to get. + + PSVirtualNetwork + + + + + + Name + + Specifies the name of the subnet configuration to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration to get. + + PSVirtualNetwork + + PSVirtualNetwork + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureVirtualNetworkSubnetConfig + + + + New-AzureVirtualNetworkSubnetConfig + + + + Remove-AzureVirtualNetworkSubnetConfig + + + + Set-AzureVirtualNetworkSubnetConfig + + + + + + + Get-AzureVirtualNetwork + + Gets a virtual network in a resource group. + + + + + Get + AzureVirtualNetwork + + + + The Get-AzureVirtualNetwork cmdlet gets one or more virtual networks n a resource group. + + + + Get-AzureVirtualNetwork + + Name + + Specifies the name of the virtual network to get. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + ResourceGroupName + + Specifies the name of the resource group that contains the virtual network. + + String + + + + + + Name + + Specifies the name of the virtual network to get. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the virtual network. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + New-AzureVirtualNetwork + + + + Remove-AzureVirtualNetwork + + + + Set-AzureVirtualNetwork + + + + + + + New-AzureApplicationGatewayBackendAddressPool + + Creates a back-end address pool for an application gateway. + + + + + New + AzureApplicationGatewayBackendAddressPool + + + + The New-AzureApplicationGatewayBackendAddressPool cmdlet creates a back-end address pool for an Azure application gateway. A back-end address can be specified as an IP address, a fully-qualified domain name (FQDN) or an IP configuration ID. + + + + New-AzureApplicationGatewayBackendAddressPool + + BackendFqdns + + Specifies a list of back-end FQDNs that this cmdlet associates with the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the back-end server pool that this cmdlet creates. + + String + + + + New-AzureApplicationGatewayBackendAddressPool + + BackendIPAddresses + + Specifies a list of back-end IP addresses that this cmdlet associates with the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the back-end server pool that this cmdlet creates. + + String + + + + New-AzureApplicationGatewayBackendAddressPool + + BackendIPConfigurationIds + + Specifies a list of back-end server IP configuration IDs that this cmdlet associates with the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the back-end server pool that this cmdlet creates. + + String + + + + + + BackendFqdns + + Specifies a list of back-end FQDNs that this cmdlet associates with the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + BackendIPAddresses + + Specifies a list of back-end IP addresses that this cmdlet associates with the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + BackendIPConfigurationIds + + Specifies a list of back-end server IP configuration IDs that this cmdlet associates with the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + Name + + Specifies the name of the back-end server pool that this cmdlet creates. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool + + + + + + + + + + + + + + + Example 1: Create a back-end address pool by using the FQDN of a back-end server + + + + + PS C:\>$Pool = New-AzureApplicationGatewayBackendAddressPool -Name "Pool01" -BackendFqdns "contoso1.com", "contoso2.com" + + + This command creates a back-end address pool named Pool01 by using the FQDNs of back-end servers, and stores it in the $Pool variable. + + + + + + + + + + + Example 2: Create a back-end address pool by using the IP address of a back-end server + + + + + PS C:\>$Pool = New-AzureApplicationGatewayBackendAddressPool -Name "Pool02" -BackendFqdns "10.10.10.10", "10.10.10.11" + + + This command creates a back-end address pool named Pool02 by using the IP addresses of back-end servers, and stores it in the $Pool variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendAddressPool + + + + Get-AzureApplicationGatewayBackendAddressPool + + + + Remove-AzureApplicationGatewayBackendAddressPool + + + + Set-AzureApplicationGatewayBackendAddressPool + + + + + + + New-AzureApplicationGatewayBackendHttpSettings + + Creates back-end HTTP settings for an application gateway. + + + + + New + AzureApplicationGatewayBackendHttpSettings + + + + The New-AzureApplicationGatewayBackendHttpSettings cmdlet creates back-end HTTP settings for an application gateway. Back-end HTTP settings are applied to all back-end servers in a pool. + + + + New-AzureApplicationGatewayBackendHttpSettings + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + CookieBasedAffinity + + Specifies whether cookie-based affinity should be enabled or disabled for the back-end server pool. + + + Enabled + Disabled + + + + Name + + Specifies the name of the back-end HTTP settings that this cmdlet creates. + + String + + + Port + + Specifies the port of the back-end server pool. + + Int32 + + + Protocol + + Specifies the protocol to use for communication between the application gateway and the back-end servers. + + String + + + + + + CookieBasedAffinity + + Specifies whether cookie-based affinity should be enabled or disabled for the back-end server pool. + + String + + String + + + none + + + Name + + Specifies the name of the back-end HTTP settings that this cmdlet creates. + + String + + String + + + none + + + Port + + Specifies the port of the back-end server pool. + + Int32 + + Int32 + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol to use for communication between the application gateway and the back-end servers. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings + + + + + + + + + + + + + + + Example 1: Create back-end HTTP settings + + + + + PS C:\> $Setting = New-AzureApplicationGatewayBackendHttpSettings -Name "Setting01" -Port 80 -Protocol Http -CookieBasedAffinity Disabled + + + This command creates back-end HTTP settings named Setting01 on port 80, using the HTTP protocol, with cookie-based affinity disabled. The settings are stored in the $Setting variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendHttpSettings + + + + Get-AzureApplicationGatewayBackendHttpSettings + + + + Remove-AzureApplicationGatewayBackendHttpSettings + + + + Set-AzureApplicationGatewayBackendHttpSettings + + + + + + + New-AzureApplicationGatewayFrontendIPConfig + + Creates a front-end IP configuration for an application gateway. + + + + + New + AzureApplicationGatewayFrontendIPConfig + + + + The New-AzureApplicationGatewayFrontendIPConfig cmdlet creates a front-end IP configuraton for an Azure application gateway. An application gateway supports two types of front-end IP configuration: -$publicIP = New-AzurePublicIpAddress ` - -Name PublicIp ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - –AllocationMethod Dynamic ` - -DomainNameLabel samplelbip - - - - - - - - - - - - - - - - - - - - - - New-AzureRouteConfig - - Creates a Route for a Route Table - - - - - New - AzureRouteConfig - - - - Creates a Route for a Route Table - - - - New-AzureRouteConfig - - Name - - Name of the Route - - String - - - AddressPrefix - - The destination CIDR to which the route applies, such as 10.1.0.0/16 - - String - - - NextHopType - - The type of Azure hop the packet should be sent to. -Possible values are: -VirtualNetworkGateway: Represents an Azure S2S VPN Gateway. -VnetLocal: Represents the local virtual network. For instance, if you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, the route for each subnet in the route table will have a next hop value of Local. -Internet: Represents the default Internet gateway provided by the Azure Infrastructure -VirtualAppliance: Represents a virtual appliance you added to your Azure virtual network. -None: Represents a black hole. Packets forwarded to a black hole will not be forwarded at all. - - - String - - - NextHopIpAddress - - Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - Name of the Route - - String - - String - - - - - - AddressPrefix - - The destination CIDR to which the route applies, such as 10.1.0.0/16 - - String - - String - - - - - - NextHopType - - The type of Azure hop the packet should be sent to. -Possible values are: -VirtualNetworkGateway: Represents an Azure S2S VPN Gateway. -VnetLocal: Represents the local virtual network. For instance, if you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, the route for each subnet in the route table will have a next hop value of Local. -Internet: Represents the default Internet gateway provided by the Azure Infrastructure -VirtualAppliance: Represents a virtual appliance you added to your Azure virtual network. -None: Represents a black hole. Packets forwarded to a black hole will not be forwarded at all. - - - String - - String - - - - - - NextHopIpAddress - - Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - - - - - - - - - - - - - - - - - - - - - - - New-AzureRouteTable - - Create a new Route Table - - - - - New - AzureRouteTable - - - - Create a new Route Table - - - - New-AzureRouteTable - - Name - - The name of the Route Table - - String - - - ResourceGroupName - - The name of the Resource Group in which this Route Table will be created - - String - - - Location - - The Region in which this Route Table will be created. - - String - - - Route - - A list of Route objects to associate with this Route Table. - - List`1[PSRoute] - - - Tag - - A dictionary of tags to be associated with this Network Interface. - - Hashtable[] - - - Force - - Forces the creation of the Route Table even if a Network Interface with the same name already exists. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Route Table - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group in which this Route Table will be created - - String - - String - - - - - - Location - - The Region in which this Route Table will be created. - - String - - String - - - - - - Route - - A list of Route objects to associate with this Route Table. - - List`1[PSRoute] - - List`1[PSRoute] - - - - - - Tag - - A dictionary of tags to be associated with this Network Interface. - - Hashtable[] - - Hashtable[] - - - - - - Force - - Forces the creation of the Route Table even if a Network Interface with the same name already exists. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureVirtualNetwork - - Create a new Virtual Network - - - - - New - AzureVirtualNetwork - - - - Create a new Virtual Network - - - - New-AzureVirtualNetwork - - Name - - The name of the Virtual Network. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Virtual Network. - - String - - - Location - - The Region in which this Virtual Network will be created. - - String - - - AddressPrefix - - A list of Ip ranges covered by this Virtual Network. - - List`1[String] - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this Virtual Network. - - List`1[String] - - - Subnet - - A list of Subnets associated with this Virtual Network. - - List`1[PSSubnet] - - - Tag - - A dictionary of tags to be associated with this Virtual Network. - - Hashtable[] - - - Force - - Force the creation of this Virtual Network possibly overwriting an existing Virtual Network. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Virtual Network. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Virtual Network. - - String - - String - - - - - - Location - - The Region in which this Virtual Network will be created. - - String - - String - - - - - - AddressPrefix - - A list of Ip ranges covered by this Virtual Network. - - List`1[String] - - List`1[String] - - - - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this Virtual Network. - - List`1[String] - - List`1[String] - - - - - - Subnet - - A list of Subnets associated with this Virtual Network. - - List`1[PSSubnet] - - List`1[PSSubnet] - - - - - - Tag - - A dictionary of tags to be associated with this Virtual Network. - - Hashtable[] - - Hashtable[] - - - - - - Force - - Force the creation of this Virtual Network possibly overwriting an existing Virtual Network. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - New-AzureResourceGroup ` - -Name 'SampleRG' ` - -Location "West US" +-- Public IP addresses + -- Private IP addresses using internal load balancing (ILB). -$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 + An application gateway can have at most one public IP address and one private IP address. The public IP address and private IP address should be added separately as front-end IP addresses. + + + + New-AzureApplicationGatewayFrontendIPConfig + + PrivateIPAddress + + Specifies the private IP address which this cmdlet associates with the front-end IP address of the application gateway. This can be specified only if a subnet is specified. This IP is statically allocated from the subnet. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + PublicIPAddress + + Specifies the public IP address object which this cmdlet associates with the front-end IP address of the application gateway. + + PSPublicIpAddress + + + Subnet + + Specifies the subnet object which this cmdlet associates with the front-end IP address of the application gateway. If you specify this parameter, it implies that the gateway uses a private IP address. If PrivateIPAddresss is specified, it should belong to the subnet specified by this parameter. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + PSSubnet + + + Name + + Specifies the name of the front-end IP configuration that this cmdlet creates. + + String + + + + New-AzureApplicationGatewayFrontendIPConfig + + PrivateIPAddress + + Specifies the private IP address which this cmdlet associates with the front-end IP address of the application gateway. This can be specified only if a subnet is specified. This IP is statically allocated from the subnet. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + PublicIPAddressId + + Specifies the public IP address ID which this cmdlet associates with the front-end IP of the application gateway. + + String + + + SubnetId + + Specifies the subnet ID which this cmdlet associates with the front-end IP configuration of the application gateway. If you specify Subnet, it implies that the gateway uses a private IP address. If PrivateIPAddress is specified, it should belong to the subnet specified by Subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + String + + + Name + + Specifies the name of the front-end IP configuration that this cmdlet creates. + + String + + + + + + Name + + Specifies the name of the front-end IP configuration that this cmdlet creates. + + String + + String + + + none + + + PrivateIPAddress + + Specifies the private IP address which this cmdlet associates with the front-end IP address of the application gateway. This can be specified only if a subnet is specified. This IP is statically allocated from the subnet. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIPAddress + + Specifies the public IP address object which this cmdlet associates with the front-end IP address of the application gateway. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIPAddressId + + Specifies the public IP address ID which this cmdlet associates with the front-end IP of the application gateway. + + String + + String + + + none + + + Subnet + + Specifies the subnet object which this cmdlet associates with the front-end IP address of the application gateway. If you specify this parameter, it implies that the gateway uses a private IP address. If PrivateIPAddresss is specified, it should belong to the subnet specified by this parameter. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the subnet ID which this cmdlet associates with the front-end IP configuration of the application gateway. If you specify Subnet, it implies that the gateway uses a private IP address. If PrivateIPAddress is specified, it should belong to the subnet specified by Subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSSubnet + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration + + + + + + + + + + + + + + + Example 1: Create a front-end IP configuration using a public IP resource object + + + + + PS C:\> $ PublicIP = New-AzurePublicIpAddress -ResourceGroupName "ResourceGroup01" -Name "PublicIP01" -location "West US" -AllocationMethod Dynamic +PS C:\> $FrontEnd = New-AzureApplicationGatewayFrontendIPConfig -Name "FrontEndIP01" –PublicIPAddress $PublicIP + + + The first command creates a public IP resource object and stores it in the $PublicIP variable. + The second command uses $PublicIP to create a new front-end IP configuration named FrontEndIP01 and stores it in the $FrontEnd variable. + + + + + + + + + + + Example 2: Create a static private IP as the front-end IP address + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $FrontEnd = New-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway -Name "FrontendIP02" -Subnet $Subnet -PrivateIPAddress 10.0.1.1 + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01, and stores it in the $VNet variable. + The second command gets a subnet configuration named Subnet01 using $VNet from the first command and stores it in the $Subnet variable. + The third command creates a front-end IP configuration named FrontEndIP02 using $Subnet from the second command and the private IP address 10.0.1.1, and then stores it in the $FrontEnd variable. + + + + + + + + + + + Example 3: Create a dynamic private IP as the front-end IP address + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $FrontEnd = New-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway -Name "FrontendIP03" -Subnet $Subnet + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01, and stores it in the $VNet variable. + The second command gets a subnet configuration named Subnet01 using $VNet from the first command and stores it in the $Subnet variable. + The third command creates a front-end IP configuration named FrontEndIP03 using $Subnet from the second command, and stores it in the $FrontEnd variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendIPConfig + + + + Get-AzureApplicationGatewayFrontendIPConfig + + + + Remove-AzureApplicationGatewayFrontendIPConfig + + + + Set-AzureApplicationGatewayFrontendIPConfig + + + + + + + New-AzureApplicationGatewayFrontendPort + + Creates a front-end port for an application gateway. + + + + + New + AzureApplicationGatewayFrontendPort + + + + The New-AzureApplicationGatewayFrontendPort cmdlet creates a front-end port for an Azure application gateway. + + + + New-AzureApplicationGatewayFrontendPort + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the front-end port that this cmdlet creates. + + String + + + Port + + Specifies the port number of the front-end port. + + Int32 + + + + + + Name + + Specifies the name of the front-end port that this cmdlet creates. + + String + + String + + + none + + + Port + + Specifies the port number of the front-end port. + + Int32 + + Int32 + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort + + + + + + + + + + + + + + + Example1: Create a front-end port + + + + + PS C:\> $FrontEndPort = New-AzureApplicationGatewayFrontendPort -Name “FrontEndPort01” –Port 80 + + + This command creates a front-end port on port 80 named FrontEndPort01. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendPort + + + + Get-AzureApplicationGatewayFrontendPort + + + + Remove-AzureApplicationGatewayFrontendPort + + + + Set-AzureApplicationGatewayFrontendPort + + + + + + + New-AzureApplicationGatewayHttpListener + + Creates an HTTP listener for an application gateway. + + + + + New + AzureApplicationGatewayHttpListener + + + + The New-AzureApplicationGatewayHttpListener cmdlet creates an HTTP listener for an Azure application gateway. + + + + New-AzureApplicationGatewayHttpListener + + FrontendIPConfiguration + + Specifies front-end IP configuration object for the HTTP listener. + + PSApplicationGatewayFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port for the HTTP listener. + + PSApplicationGatewayFrontendPort + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificate + + Specifies the SSL certificate object for the HTTP listener. + + PSApplicationGatewaySslCertificate + + + Name + + Specifies the name of the HTTP listener that this cmdlet creates. + + String + + + Protocol + + Specifies the protocol that the HTTP listener uses. + + + Http + Https + + + + + New-AzureApplicationGatewayHttpListener + + FrontendIPConfigurationId + + Specifies the ID of the front-end IP configuration for the HTTP listener. + + String + + + FrontendPortId + + Specifies the ID of the front-end port object for the HTTP listener. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificateId + + Specifies the ID of the SSL certificate for the HTTP listener. + + String + + + Name + + Specifies the name of the HTTP listener that this cmdlet creates. + + String + + + Protocol + + Specifies the protocol that the HTTP listener uses. + + + Http + Https + + + + + + + FrontendIPConfiguration + + Specifies front-end IP configuration object for the HTTP listener. + + PSApplicationGatewayFrontendIPConfiguration + + PSApplicationGatewayFrontendIPConfiguration + + + none + + + FrontendIPConfigurationId + + Specifies the ID of the front-end IP configuration for the HTTP listener. + + String + + String + + + none + + + FrontendPort + + Specifies the front-end port for the HTTP listener. + + PSApplicationGatewayFrontendPort + + PSApplicationGatewayFrontendPort + + + none + + + FrontendPortId + + Specifies the ID of the front-end port object for the HTTP listener. + + String + + String + + + none + + + Name + + Specifies the name of the HTTP listener that this cmdlet creates. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol that the HTTP listener uses. + + String + + String + + + none + + + SslCertificate + + Specifies the SSL certificate object for the HTTP listener. + + PSApplicationGatewaySslCertificate + + PSApplicationGatewaySslCertificate + + + none + + + SslCertificateId + + Specifies the ID of the SSL certificate for the HTTP listener. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSHttpListener + + + + + + + + + + + + + + + Example 1: Create an HTTP listener + + + + + PS C:\>$Listener = New-AzureApplicationGatewayHttpListener -Name "Listener01" -Protocol "Http" -FrontendIpConfiguration $FIp01 -FrontendPort $FP01 + + + This command creates an HTTP listener. + + + + + + + + + + + Example 2: Create an HTTP listener with SSL + + + + + PS C:\>$Listener = New-AzureApplicationGatewayHttpListener -Name "Listener01" -Protocol "Https" -FrontendIpConfiguration $FIp01 -FrontendPort $FP01 – SslCertificate $SSLCert01 + + + This command creates an HTTP listener that uses SSL offload and provides the SSL certificate in the $SSLCert01 variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayHttpListener + + + + Get-AzureApplicationGatewayHttpListener + + + + Remove-AzureApplicationGatewayHttpListener + + + + Set-AzureApplicationGatewayHttpListener + + + + + + + New-AzureApplicationGatewayIPConfiguration + + Creates an IP configuration for an application gateway. + + + + + New + AzureApplicationGatewayIPConfiguration + + + + The New-AzureApplicationGatewayIPConfiguration cmdlet creates an IP configuration for an application gateway. The IP configuration contains the subnet in which application gateway is deployed. + + + + New-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SubnetId + + Specifies the subnet ID. This is the subnet in which the application gateway would be deployed. + + String + + + Name + + Specifies the name of the IP configuration to create. + + String + + + + New-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Subnet + + Specifies the subnet object. This is the subnet in which the application gateway is deployed. + + PSSubnet + + + Name + + Specifies the name of the IP configuration to create. + + String + + + + + + Name + + Specifies the name of the IP configuration to create. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Subnet + + Specifies the subnet object. This is the subnet in which the application gateway is deployed. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the subnet ID. This is the subnet in which the application gateway would be deployed. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSSubnet + + + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration + + + + + + + + + + + + + + + Example 1: Create an IP configuration for an application gateway. + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\ $GatewayIpConfig = New-AzureApplicationGatewayIPConfiguration -Name "AppGwSubnet01" -Subnet $Subnet + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01. + The second command gets the subnet configuration for the subnet that the virtual network in the previous command belongs to, and stores it in the $Subnet variable. + The third command creates the IP configuration using $Subnet. + + + + + + + + + + + + + Add-AzureApplicationGatewayIPConfiguration + + + + Get-AzureApplicationGatewayIPConfiguration + + + + Remove-AzureApplicationGatewayIPConfiguration + + + + Set-AzureApplicationGatewayIPConfiguration + + + + + + + New-AzureApplicationGatewayRequestRoutingRule + + Creates a request routing rule for an application gateway. + + + + + New + AzureApplicationGatewayRequestRoutingRule + + + + The Add-AzureApplicationGatewayRequestRoutingRule cmdlet creates a request routing rule for an Azure application gateway. + + + + New-AzureApplicationGatewayRequestRoutingRule + + BackendAddressPool + + Specifies the back-end address pool (as an object) for the request routing rule to create. + + PSApplicationGatewayBackendAddressPool + + + BackendHttpSettings + + Specifies the back-end HTTP settings (as object) for the request routing rule to create. + + PSApplicationGatewayBackendHttpSettings + + + HttpListener + + Specifies the back-end HTTP listener (as an object) for the request routing rule to create. + + PSApplicationGatewayHttpListener + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the request routing rule to create. + + String + + + RuleType + + Specifies type of the request routing rule. + + String + + + + New-AzureApplicationGatewayRequestRoutingRule + + BackendAddressPoolId + + Specifies the back-end address pool (as an ID) of the request routing rule to create. + + String + + + BackendHttpSettingsId + + Specifies the back-end HTTP settings (as an ID) of the request routing rule to create. + + String + + + HttpListenerId + + Specifies the backend HTTP listener (as an ID) for the request routing rule to create. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the request routing rule to create. + + String + + + RuleType + + Specifies type of the request routing rule. + + String + + + + + + BackendAddressPool + + Specifies the back-end address pool (as an object) for the request routing rule to create. + + PSApplicationGatewayBackendAddressPool + + PSApplicationGatewayBackendAddressPool + + + none + + + BackendAddressPoolId + + Specifies the back-end address pool (as an ID) of the request routing rule to create. + + String + + String + + + none + + + BackendHttpSettings + + Specifies the back-end HTTP settings (as object) for the request routing rule to create. + + PSApplicationGatewayBackendHttpSettings + + PSApplicationGatewayBackendHttpSettings + + + none + + + BackendHttpSettingsId + + Specifies the back-end HTTP settings (as an ID) of the request routing rule to create. + + String + + String + + + none + + + HttpListener + + Specifies the back-end HTTP listener (as an object) for the request routing rule to create. + + PSApplicationGatewayHttpListener + + PSApplicationGatewayHttpListener + + + none + + + HttpListenerId + + Specifies the backend HTTP listener (as an ID) for the request routing rule to create. + + String + + String + + + none + + + Name + + Specifies the name of the request routing rule to create. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RuleType + + Specifies type of the request routing rule. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule + + + + + + + + + + + + + + + Example 1: Create a request routing rule for an application gateway + + + + + PS C:\>$Rule = New-AzureApplicationGatewayRequestRoutingRule -Name "Rule01" -RuleType Basic -BackendHttpSettings $Setting -HttpListener $Listener -BackendAddressPool $Pool + + + This command creates a request routing rule. + + + + + + + + + + + + + Add-AzureApplicationGatewayRequestRoutingRule + + + + Get-AzureApplicationGatewayRequestRoutingRule + + + + Remove-AzureApplicationGatewayRequestRoutingRule + + + + Set-AzureApplicationGatewayRequestRoutingRule + + + + + + + New-AzureApplicationGatewaySku + + Creates a SKU for an application gateway. + + + + + New + AzureApplicationGatewaySku + + + + The New-AzureApplicationGatewaySku cmdlet creates a stock keeping unit (SKU) for an Azure application gateway. + + + + New-AzureApplicationGatewaySku + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Capacity + + Specifies the number of instances of an application gateway. + + Int32 + + + Name + + Specifies the name of the SKU. + + + Standard_Small + Standard_Medium + Standard_Large + + + + Tier + + Specifies the tier of SKU. + + String + + + + + + Capacity + + Specifies the number of instances of an application gateway. + + Int32 + + Int32 + + + none + + + Name + + Specifies the name of the SKU. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Tier + + Specifies the tier of SKU. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku + + + + + + + + + + + + + + + Example 1: Create a SKU for an azure_2 application gateway + + + + + PS C:\>$SKU = New-AzureApplicationGatewaySku -Name "Standard_Small" -Tier "Standard" -Capacity 2 + + + This command creates a SKU named Standard_Small for an Azure application gateway. + + + + + + + + + + + + + Get-AzureApplicationGatewaySku + + + + Set-AzureApplicationGatewaySku + + + + + + + New-AzureApplicationGatewaySslCertificate + + Creates an SSL certificate for an Azure application gateway. + + + + + New + AzureApplicationGatewaySslCertificate + + + + The New-AzureApplicationGatewaySslCertificate cmdlet creates an SSL certificate for an Azure application gateway. + + + + New-AzureApplicationGatewaySslCertificate + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + CertificateFile + + Specifies the path of the .pfx file of the SSL certificate that this cmdlet creates. + + System.String + + + Name + + Specifies the name of the SSL certificate that this cmdlet creates. + + String + + + Password + + Specifies the password of the SSL that this cmdlet creates. + + String + + + + + + CertificateFile + + Specifies the path of the .pfx file of the SSL certificate that this cmdlet creates. + + System.String + + System.String + + + none + + + Name + + Specifies the name of the SSL certificate that this cmdlet creates. + + String + + String + + + none + + + Password + + Specifies the password of the SSL that this cmdlet creates. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate + + + + + + + + + + + + + + + Example 1: Create an SSL certificate for an azure_2 application gateway. + + + + + PS C:\>$Cert = New-AzureApplicationGatewaySslCertificate -Name "Cert01" –CertificateFile "D:\cert01.pfx" –Password "Password01" + + + This command creates a SSL certificate named Cert01 for the default application gateway. + + + + + + + + + + + + + Add-AzureApplicationGatewaySslCertificate + + + + Get-AzureApplicationGatewaySslCertificate + + + + Remove-AzureApplicationGatewaySslCertificate + + + + Set-AzureApplicationGatewaySslCertificate + + + + + + + New-AzureApplicationGateway + + Creates an application gateway. + + + + + New + AzureApplicationGateway + + + + The New-AzureApplicationGateway cmdlet creates an Azure application gateway. + An application gateway requires the following: -$vnet = New-AzurevirtualNetwork ` - -Name SampleVNet ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -AddressPrefix 10.0.0.0/16 ` - -Subnet $frontendSubnet,$backendSubnet - - - - - - - - - - - - - - - - - - - - - - New-AzureVirtualNetworkGateway - - - - - - - New - AzureVirtualNetworkGateway - - - - - - - - New-AzureVirtualNetworkGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Location - - - - String - - - IpConfigurations - - - - List`1[PSVirtualNetworkGatewayIpConfiguration] - - - GatewayType - - - - String - - - VpnType - - - - String - - - EnableBgp - - - - Boolean - - - Tag - - - - Hashtable[] - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Location - - - - String - - String - - - - - - IpConfigurations - - - - List`1[PSVirtualNetworkGatewayIpConfiguration] - - List`1[PSVirtualNetworkGatewayIpConfiguration] - - - - - - GatewayType - - - - String - - String - - - - - - VpnType - - - - String - - String - - - - - - EnableBgp - - - - Boolean - - Boolean - - - - - - Tag - - - - Hashtable[] - - Hashtable[] - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureVirtualNetworkGatewayConnection - - - - - - - New - AzureVirtualNetworkGatewayConnection - - - - - - - - New-AzureVirtualNetworkGatewayConnection - - Name - - - - String - - - ResourceGroupName - - - - String - - - Location - - - - String - - - VirtualNetworkGateway1 - - - - PSVirtualNetworkGateway - - - VirtualNetworkGateway2 - - - - PSVirtualNetworkGateway - - - LocalNetworkGateway2 - - - - PSLocalNetworkGateway - - - ConnectionType - - - - String - - - RoutingWeight - - - - Int32 - - - SharedKey - - - - String - - - Tag - - - - Hashtable[] - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Location - - - - String - - String - - - - - - VirtualNetworkGateway1 - - - - PSVirtualNetworkGateway - - PSVirtualNetworkGateway - - - - - - VirtualNetworkGateway2 - - - - PSVirtualNetworkGateway - - PSVirtualNetworkGateway - - - - - - LocalNetworkGateway2 - - - - PSLocalNetworkGateway - - PSLocalNetworkGateway - - - - - - ConnectionType - - - - String - - String - - - - - - RoutingWeight - - - - Int32 - - Int32 - - - - - - SharedKey - - - - String - - String - - - - - - Tag - - - - Hashtable[] - - Hashtable[] - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureVirtualNetworkGatewayIpConfig - - - - - - - New - AzureVirtualNetworkGatewayIpConfig - - - - - - - - New-AzureVirtualNetworkGatewayIpConfig - - Name - - - - String - - - PrivateIpAddress - - - - String - - - SubnetId - - - - String - - - PublicIpAddressId - - - - String - - - Profile - - - - AzureProfile - - - - New-AzureVirtualNetworkGatewayIpConfig - - Name - - - - String - - - PrivateIpAddress - - - - String - - - Subnet - - - - PSSubnet - - - PublicIpAddress - - - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - PrivateIpAddress - - - - String - - String - - - - - - SubnetId - - - - String - - String - - - - - - PublicIpAddressId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - PublicIpAddress - - - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureVirtualNetworkSubnetConfig - - Create a new Virtual Network Subnet - - - - - New - AzureVirtualNetworkSubnetConfig - - - - Create a new Virtual Network Subnet - - - - New-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet. - - String - - - AddressPrefix - - The Ip range covered by this Subnet. - - String - - - NetworkSecurityGroup - - The Network Security Group object containing ACLs that will apply to this Subnet. - - PSNetworkSecurityGroup - - - RouteTable - - The Route Table object containing Routes that will apply to this Subnet. - - PSRouteTable - - - Profile - - - - AzureProfile - - - - New-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet. - - String - - - AddressPrefix - - The Ip range covered by this Subnet. - - String - - - NetworkSecurityGroupId - - A reference to a Network Security Group containing ACLs that will apply to this Subnet. - - String - - - RouteTableId - - A reference to a Route Table object containing Routes that will apply to this Subnet. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Subnet. - - String - - String - - - - - - AddressPrefix - - The Ip range covered by this Subnet. - - String - - String - - - - - - NetworkSecurityGroup - - The Network Security Group object containing ACLs that will apply to this Subnet. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - RouteTable - - The Route Table object containing Routes that will apply to this Subnet. - - PSRouteTable - - PSRouteTable - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - NetworkSecurityGroupId - - A reference to a Network Security Group containing ACLs that will apply to this Subnet. - - String - - String - - - - - - RouteTableId - - A reference to a Route Table object containing Routes that will apply to this Subnet. - - String - - String - - - - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this Subnet. - - list`1[string] - - list`1[string] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - New-AzureResourceGroup ` - -Name 'SampleRG' ` - -Location "West US" +-- A resource group. +-- A virtual network. +-- A back-end server pool, containing the IP addresses of the back-end servers. +-- Back-end server pool settings. Each pool has settings such as port, protocol and cookie-based affinity, that are applied to all servers within the pool. +-- Front-end IP addresses, which are the IP addresses opened on the application gateway. A front-end IP address can be a public IP address or an internal IP address. +-- Front-end ports, which are the public ports opened on the application gateway. Traffic that hits these ports is redirected to the back-end servers. +-- A request routing rule that binds the listener and the back-end server pool. The rule defines which back-end server pool the traffic should be directed to when it hits a particular listener. A listener has a front-end port, front-end IP address, protocol (http or https) and Secure Sockets Layer (SSL) certificate name (if configuring SSL offload). + + + + New-AzureApplicationGateway + + Force + + Forces the creation of the application gateway even if an application gateway with the same name already exists. + + + + FrontendIPConfigurations + + Specifies a list of front-end IP configurations for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificates + + Specifies the list of Secure Sockets Layer (SSL) certificates for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Tag + + Specifies the dictionary of tags associated with the application gateway. + + Hashtable[] + + + BackendAddressPools + + Specifies the list of back-end address pools for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + BackendHttpSettingsCollection + + Specifies the list of back-end HTTP settings for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + FrontendPorts + + Specifies a list of front-end ports for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + GatewayIPConfigurations + + Specifies a list of IP configurations for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + HttpListeners + + Specifies a list of HTTP listeners for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Location + + Specifies the region in which to create the application gateway. + + String + + + Name + + Specifies the name of application gateway. + + String + + + RequestRoutingRules + + Specifies a list of request routing rules for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + ResourceGroupName + + Specifies the name of the resource group in which to create the application gateway. + + String + + + Sku + + Specifies the stock keeping unit (SKU) of the application gateway. + + PSApplicationGatewaySku + + + + + + BackendAddressPools + + Specifies the list of back-end address pools for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + BackendHttpSettingsCollection + + Specifies the list of back-end HTTP settings for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Force + + Forces the creation of the application gateway even if an application gateway with the same name already exists. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIPConfigurations + + Specifies a list of front-end IP configurations for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + FrontendPorts + + Specifies a list of front-end ports for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + GatewayIPConfigurations + + Specifies a list of IP configurations for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + HttpListeners + + Specifies a list of HTTP listeners for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Location + + Specifies the region in which to create the application gateway. + + String + + String + + + none + + + Name + + Specifies the name of application gateway. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RequestRoutingRules + + Specifies a list of request routing rules for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + ResourceGroupName + + Specifies the name of the resource group in which to create the application gateway. + + String + + String + + + none + + + Sku + + Specifies the stock keeping unit (SKU) of the application gateway. + + PSApplicationGatewaySku + + PSApplicationGatewaySku + + + none + + + SslCertificates + + Specifies the list of Secure Sockets Layer (SSL) certificates for the application gateway. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Tag + + Specifies the dictionary of tags associated with the application gateway. + + Hashtable[] + + Hashtable[] + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Create an application gateway + + + + + This command creates a resource group for the application gateway. +PS C:\> $ResourceGroup = New-AzureResourceGroup -Name "ResourceGroup01" -Location "West US" -Tags @{Name = "Department"; Value = "Marketing"} -$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 +These four commands create a virtual network. The first command creates a subnet configuration. The second command creates a virtual network. The third command verifies the subnet configuration and the fourth command verifies that the virtual network is created successfully. +PS C:\> $Subnet = New-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -AddressPrefix 10.0.0.0/24 +PS C:\> $VNet = New-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" -Location "West US" -AddressPrefix 10.0.0.0/16 -Subnet $Subnet +PS C:\> $VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name $Subnet01 -VirtualNetwork $VNet -$vnet = New-AzurevirtualNetwork ` - -Name SampleVNet ` - -ResourceGroupName SampleRG ` - -Location "West US" ` - -AddressPrefix 10.0.0.0/16 ` - -Subnet $frontendSubnet,$backendSubnet - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGateway - - - - - - - Remove - AzureApplicationGateway - - - - - - - - Remove-AzureApplicationGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Force - - - - SwitchParameter - - - PassThru - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayBackendAddressPool - - - - - - - Remove - AzureApplicationGatewayBackendAddressPool - - - - - - - - Remove-AzureApplicationGatewayBackendAddressPool - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayBackendHttpSettings - - - - - - - Remove - AzureApplicationGatewayBackendHttpSettings - - - - - - - - Remove-AzureApplicationGatewayBackendHttpSettings - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayFrontendIPConfig - - - - - - - Remove - AzureApplicationGatewayFrontendIPConfig - - - - - - - - Remove-AzureApplicationGatewayFrontendIPConfig - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayFrontendPort - - - - - - - Remove - AzureApplicationGatewayFrontendPort - - - - - - - - Remove-AzureApplicationGatewayFrontendPort - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayHttpListener - - - - - - - Remove - AzureApplicationGatewayHttpListener - - - - - - - - Remove-AzureApplicationGatewayHttpListener - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayIPConfiguration - - - - - - - Remove - AzureApplicationGatewayIPConfiguration - - - - - - - - Remove-AzureApplicationGatewayIPConfiguration - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewayRequestRoutingRule - - - - - - - Remove - AzureApplicationGatewayRequestRoutingRule - - - - - - - - Remove-AzureApplicationGatewayRequestRoutingRule - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureApplicationGatewaySslCertificate - - - - - - - Remove - AzureApplicationGatewaySslCertificate - - - - - - - - Remove-AzureApplicationGatewaySslCertificate - - Name - - - - String - - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLoadBalancer - - Remove an Azure Load Balancer - - - - - Remove - AzureLoadBalancer - - - - Remove an Azure Load Balancer - - - - Remove-AzureLoadBalancer - - Name - - The name of the Load Balancer to remove. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Load Balancer. - - String - - - Force - - Forces the deletion of the Load Balancer regardless of whether resources are assigned to it. - - SwitchParameter - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Load Balancer. - - String - - String - - - - - - Force - - Forces the deletion of the Load Balancer regardless of whether resources are assigned to it. - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLoadBalancerBackendAddressPoolConfig - - Remove a Backend Address Pool - - - - - Remove - AzureLoadBalancerBackendAddressPoolConfig - - - - Remove a Backend Address Pool - - - - Remove-AzureLoadBalancerBackendAddressPoolConfig - - Name - - The Load Balancer containing the Backend Address Pool. - - String - - - LoadBalancer - - The name of the Backend Address Pool to remove. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The Load Balancer containing the Backend Address Pool. - - String - - String - - - - - - LoadBalancer - - The name of the Backend Address Pool to remove. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLoadBalancerFrontendIpConfig - - Remove a Frontend Ip configuration - - - - - Remove - AzureLoadBalancerFrontendIpConfig - - - - Remove a Frontend Ip configuration - - - - Remove-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip configuration to remove. - - String - - - LoadBalancer - - The Load Balancer containing the Frontend Ip configuration. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Frontend Ip configuration to remove. - - String - - String - - - - - - LoadBalancer - - The Load Balancer containing the Frontend Ip configuration. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLoadBalancerInboundNatRuleConfig - - Remove an Inbound NAT Rule - - - - - Remove - AzureLoadBalancerInboundNatRuleConfig - - - - Remove an Inbound NAT Rule - - - - Remove-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Inbound NAT Rule to remove. - - String - - - LoadBalancer - - The Load Balancer containing the Inbound NAT Rule. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Inbound NAT Rule to remove. - - String - - String - - - - - - LoadBalancer - - The Load Balancer containing the Inbound NAT Rule. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLoadBalancerProbeConfig - - Remove a Probe configuration - - - - - Remove - AzureLoadBalancerProbeConfig - - - - Remove a Probe configuration - - - - Remove-AzureLoadBalancerProbeConfig - - Name - - The name of the probe configuration to remove. - - String - - - LoadBalancer - - The Load Balancer containing the probe configuration. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the probe configuration to remove. - - String - - String - - - - - - LoadBalancer - - The Load Balancer containing the probe configuration. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLoadBalancerRuleConfig - - Remove a Load Balancer Rule - - - - - Remove - AzureLoadBalancerRuleConfig - - - - Remove a Load Balancer Rule - - - - Remove-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancer Rule to remove. - - String - - - LoadBalancer - - The Load Balancer containing the Load Balancer Rule. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer Rule to remove. - - String - - String - - - - - - LoadBalancer - - The Load Balancer containing the Load Balancer Rule. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureLocalNetworkGateway - - - - - - - Remove - AzureLocalNetworkGateway - - - - - - - - Remove-AzureLocalNetworkGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Force - - - - SwitchParameter - - - PassThru - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureNetworkInterface - - Remove a Network Interface - - - - - Remove - AzureNetworkInterface - - - - Remove a Network Interface - - - - Remove-AzureNetworkInterface - - Name - - The name of the Network Interface to remove. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Network Interface. - - String - - - Force - - Forces the deletion of the Network Interface without asking for confirmation. - - SwitchParameter - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Interface to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Network Interface. - - String - - String - - - - - - Force - - Forces the deletion of the Network Interface without asking for confirmation. - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureNetworkSecurityGroup - - Remove a Network Security Group - - - - - Remove - AzureNetworkSecurityGroup - - - - Remove a Network Security Group - - - - Remove-AzureNetworkSecurityGroup - - Name - - The name of the Network Security Group to remove. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Network Security Group. - - String - - - Force - - Forces the deletion of the Network Security Group regardless of whether resources are assigned to it. - - SwitchParameter - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Group to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Network Security Group. - - String - - String - - - - - - Force - - Forces the deletion of the Network Security Group regardless of whether resources are assigned to it. - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureNetworkSecurityRuleConfig - - Remove a Network Security Rule from a Network Security Group - - - - - Remove - AzureNetworkSecurityRuleConfig - - - - Remove a Network Security Rule from a Network Security Group - - - - Remove-AzureNetworkSecurityRuleConfig - - Name - - The name of the Network Security Rule to remove. - - String - - - NetworkSecurityGroup - - The name of the Network Security Group containing the Network Security Rule to be removed. - - PSNetworkSecurityGroup - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Rule to remove. - - String - - String - - - - - - NetworkSecurityGroup - - The name of the Network Security Group containing the Network Security Rule to be removed. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzurePublicIpAddress - - Remove a Public Ip Address - - - - - Remove - AzurePublicIpAddress - - - - Remove a Public Ip Address - - - - Remove-AzurePublicIpAddress - - Name - - The name of the Public Ip Address to remove. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Public Ip Address. - - String - - - Force - - Forces the deletion of the Public Ip Address without asking for confirmation. - - SwitchParameter - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Public Ip Address to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Public Ip Address. - - String - - String - - - - - - Force - - Forces the deletion of the Public Ip Address without asking for confirmation. - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureRouteConfig - - Remove a Route - - - - - Remove - AzureRouteConfig - - - - Remove a Route - - - - Remove-AzureRouteConfig - - Name - - Name of the Route - - String - - - RouteTable - - The Route Table containing the Route - - PSRouteTable - - - Profile - - - - AzureProfile - - - - - - Name - - Name of the Route - - String - - String - - - - - - RouteTable - - The Route Table containing the Route - - PSRouteTable - - PSRouteTable - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureRouteTable - - Remove an Azure Route Table - - - - - Remove - AzureRouteTable - - - - Remove an Azure Route Table - - - - Remove-AzureRouteTable - - Name - - The name of the Route Table to remove. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Route Table. - - String - - - Force - - Forces the deletion of the Route Table without asking for confirmation. - - SwitchParameter - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Route Table to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Route Table. - - String - - String - - - - - - Force - - Forces the deletion of the Route Table without asking for confirmation. - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureVirtualNetwork - - Remove a Virtual Network - - - - - Remove - AzureVirtualNetwork - - - - Remove a Virtual Network - - - - Remove-AzureVirtualNetwork - - Name - - The name of the Virtual Network to remove. - - String - - - ResourceGroupName - - The name of the Resource Group containing the Virtual Network. - - String - - - Force - - Forces the deletion of the Virtual Network without confirmation. - - SwitchParameter - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Virtual Network to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Resource Group containing the Virtual Network. - - String - - String - - - - - - Force - - Forces the deletion of the Virtual Network without confirmation. - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - Indicate if an object should be returned. Returns true if remove is successful. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureVirtualNetworkGateway - - - - - - - Remove - AzureVirtualNetworkGateway - - - - - - - - Remove-AzureVirtualNetworkGateway - - Name - - - - String - - - ResourceGroupName - - - - String - - - Force - - - - SwitchParameter - - - PassThru - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureVirtualNetworkGatewayConnection - - - - - - - Remove - AzureVirtualNetworkGatewayConnection - - - - - - - - Remove-AzureVirtualNetworkGatewayConnection - - Name - - - - String - - - ResourceGroupName - - - - String - - - Force - - - - SwitchParameter - - - PassThru - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - PassThru - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureVirtualNetworkSubnetConfig - - Remove a Subnet from a Virtual Network - - - - - Remove - AzureVirtualNetworkSubnetConfig - - - - Remove a Subnet from a Virtual Network - - - - Remove-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet to remove. - - String - - - VirtualNetwork - - The name of the Virtual Network containing the Subnet to be removed. - - PSVirtualNetwork - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Subnet to remove. - - String - - String - - - - - - VirtualNetwork - - The name of the Virtual Network containing the Subnet to be removed. - - PSVirtualNetwork - - PSVirtualNetwork - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Reset-AzureVirtualNetworkGateway - - - - - - - Reset - AzureVirtualNetworkGateway - - - - - - - - Reset-AzureVirtualNetworkGateway - - VirtualNetworkGateway - - - - PSVirtualNetworkGateway - - - Profile - - - - AzureProfile - - - - - - VirtualNetworkGateway - - - - PSVirtualNetworkGateway - - PSVirtualNetworkGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Reset-AzureVirtualNetworkGatewayConnectionSharedKey - - - - - - - Reset - AzureVirtualNetworkGatewayConnectionSharedKey - - - - - - - - Reset-AzureVirtualNetworkGatewayConnectionSharedKey - - Name - - - - String - - - ResourceGroupName - - - - String - - - KeyLength - - - - UInt32 - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - KeyLength - - - - UInt32 - - UInt32 - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGateway - - - - - - - Set - AzureApplicationGateway - - - - - - - - Set-AzureApplicationGateway - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayBackendAddressPool - - - - - - - Set - AzureApplicationGatewayBackendAddressPool - - - - - - - - Set-AzureApplicationGatewayBackendAddressPool - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - BackendIPConfigurationIds - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - Set-AzureApplicationGatewayBackendAddressPool - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - BackendIPAddresses - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - Set-AzureApplicationGatewayBackendAddressPool - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - BackendFqdns - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - BackendIPConfigurationIds - - - - List`1[String] - - List`1[String] - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendIPAddresses - - - - List`1[String] - - List`1[String] - - - - - - BackendFqdns - - - - List`1[String] - - List`1[String] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayBackendHttpSettings - - - - - - - Set - AzureApplicationGatewayBackendHttpSettings - - - - - - - - Set-AzureApplicationGatewayBackendHttpSettings - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Port - - - - Int32 - - - Protocol - - - - String - - - CookieBasedAffinity - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - Port - - - - Int32 - - Int32 - - - - - - Protocol - - - - String - - String - - - - - - CookieBasedAffinity - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayFrontendIPConfig - - - - - - - Set - AzureApplicationGatewayFrontendIPConfig - - - - - - - - Set-AzureApplicationGatewayFrontendIPConfig - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - PrivateIPAddress - - - - String - - - Subnet - - - - PSSubnet - - - PublicIPAddress - - - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - Set-AzureApplicationGatewayFrontendIPConfig - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - PrivateIPAddress - - - - String - - - SubnetId - - - - String - - - PublicIPAddressId - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - PrivateIPAddress - - - - String - - String - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - PublicIPAddress - - - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - SubnetId - - - - String - - String - - - - - - PublicIPAddressId - - - - String - - String - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayFrontendPort - - - - - - - Set - AzureApplicationGatewayFrontendPort - - - - - - - - Set-AzureApplicationGatewayFrontendPort - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Port - - - - Int32 - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - Port - - - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayHttpListener - - - - - - - Set - AzureApplicationGatewayHttpListener - - - - - - - - Set-AzureApplicationGatewayHttpListener - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - FrontendIPConfigurationId - - - - String - - - FrontendPortId - - - - String - - - SslCertificateId - - - - String - - - Protocol - - - - String - - - Profile - - - - AzureProfile - - - - Set-AzureApplicationGatewayHttpListener - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - FrontendIPConfiguration - - - - PSApplicationGatewayFrontendIPConfiguration - - - FrontendPort - - - - PSApplicationGatewayFrontendPort - - - SslCertificate - - - - PSApplicationGatewaySslCertificate - - - Protocol - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - FrontendIPConfigurationId - - - - String - - String - - - - - - FrontendPortId - - - - String - - String - - - - - - SslCertificateId - - - - String - - String - - - - - - Protocol - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIPConfiguration - - - - PSApplicationGatewayFrontendIPConfiguration - - PSApplicationGatewayFrontendIPConfiguration - - - - - - FrontendPort - - - - PSApplicationGatewayFrontendPort - - PSApplicationGatewayFrontendPort - - - - - - SslCertificate - - - - PSApplicationGatewaySslCertificate - - PSApplicationGatewaySslCertificate - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayIPConfiguration - - - - - - - Set - AzureApplicationGatewayIPConfiguration - - - - - - - - Set-AzureApplicationGatewayIPConfiguration - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - SubnetId - - - - String - - - Profile - - - - AzureProfile - - - - Set-AzureApplicationGatewayIPConfiguration - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Subnet - - - - PSSubnet - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - SubnetId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - - - PSSubnet - - PSSubnet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewayRequestRoutingRule - - - - - - - Set - AzureApplicationGatewayRequestRoutingRule - - - - - - - - Set-AzureApplicationGatewayRequestRoutingRule - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - RuleType - - - - String - - - BackendHttpSettingsId - - - - String - - - HttpListenerId - - - - String - - - BackendAddressPoolId - - - - String - - - Profile - - - - AzureProfile - - - - Set-AzureApplicationGatewayRequestRoutingRule - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - RuleType - - - - String - - - BackendHttpSettings - - - - PSApplicationGatewayBackendHttpSettings - - - HttpListener - - - - PSApplicationGatewayHttpListener - - - BackendAddressPool - - - - PSApplicationGatewayBackendAddressPool - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - RuleType - - - - String - - String - - - - - - BackendHttpSettingsId - - - - String - - String - - - - - - HttpListenerId - - - - String - - String - - - - - - BackendAddressPoolId - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - BackendHttpSettings - - - - PSApplicationGatewayBackendHttpSettings - - PSApplicationGatewayBackendHttpSettings - - - - - - HttpListener - - - - PSApplicationGatewayHttpListener - - PSApplicationGatewayHttpListener - - - - - - BackendAddressPool - - - - PSApplicationGatewayBackendAddressPool - - PSApplicationGatewayBackendAddressPool - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewaySku - - - - - - - Set - AzureApplicationGatewaySku - - - - - - - - Set-AzureApplicationGatewaySku - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - Tier - - - - String - - - Capacity - - - - Int32 - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - Tier - - - - String - - String - - - - - - Capacity - - - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureApplicationGatewaySslCertificate - - - - - - - Set - AzureApplicationGatewaySslCertificate - - - - - - - - Set-AzureApplicationGatewaySslCertificate - - ApplicationGateway - - - - PSApplicationGateway - - - Name - - - - String - - - CertificateFile - - - - String - - - Password - - - - String - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Name - - - - String - - String - - - - - - CertificateFile - - - - String - - String - - - - - - Password - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureLoadBalancer - - Sets the goal state for an Azure Load Balancer - - - - - Set - AzureLoadBalancer - - - - Sets the goal state for an Azure Load Balancer - - - - Set-AzureLoadBalancer - - LoadBalancer - - A Load Balancer object representing the goal state to which the Load Balancer should be set. - - PSLoadBalancer - - - Profile - - - - AzureProfile - - - - - - LoadBalancer - - A Load Balancer object representing the goal state to which the Load Balancer should be set. - - PSLoadBalancer - - PSLoadBalancer - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureLoadBalancerFrontendIpConfig - - Sets the goal state for a Frontend Ip configuration - - - - - Set - AzureLoadBalancerFrontendIpConfig - - - - Sets the goal state for a Frontend Ip configuration - - - - Set-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip. - - String - - - LoadBalancer - - The Load Balancer object with which this Frontend Ip config will be associated. - - PSLoadBalancer - - - PrivateIpAddress - - The private Ip address of the Load Balancer. - This can be specified only if a subnet is specified - - String - - - SubnetId - - The Id of the Subnet in which this Frontend Ip will be created. - - String - - - PublicIpAddressId - - The Id of the Public Ip Address to associate with this Frontend Ip. - - String - - - Profile - - - - AzureProfile - - - - Set-AzureLoadBalancerFrontendIpConfig - - Name - - The name of the Frontend Ip. - - String - - - LoadBalancer - - The Load Balancer object with which this Frontend Ip config will be associated. - - PSLoadBalancer - - - PrivateIpAddress - - The private Ip address of the Load Balancer. - This can be specified only if a subnet is specified - - String - - - Subnet - - The Subnet object within which this Frontend Ip will be created. - - PSSubnet - - - PublicIpAddress - - The Public Ip Address object to associate with this Frontend Ip. - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Frontend Ip. - - String - - String - - - - - - LoadBalancer - - The Load Balancer object with which this Frontend Ip config will be associated. - - PSLoadBalancer - - PSLoadBalancer - - - - - - PrivateIpAddress - - The private Ip address of the Load Balancer. - This can be specified only if a subnet is specified - - String - - String - - - - - - SubnetId - - The Id of the Subnet in which this Frontend Ip will be created. - - String - - String - - - - - - PublicIpAddressId - - The Id of the Public Ip Address to associate with this Frontend Ip. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - Subnet - - The Subnet object within which this Frontend Ip will be created. - - PSSubnet - - PSSubnet - - - - - - PublicIpAddress - - The Public Ip Address object to associate with this Frontend Ip. - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureLoadBalancerInboundNatRuleConfig - - Add a new Inbound NAT Rule to an Azure Load Balancer - - - - - Set - AzureLoadBalancerInboundNatRuleConfig - - - - Add a new Inbound NAT Rule to an Azure Load Balancer - - - - Set-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Inbound NAT Rule. - - String - - - LoadBalancer - - The Load Balancer in which this Inbound NAT Rule will be created. - - PSLoadBalancer - - - FrontendIpConfigurationId - - A list of Frontend Ip Ids to associate with this Inbound NAT Rule. - - String - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which conversation state is maintained within the Load Balancer. - - Int32 - - - EnableFloatingIP - - Enables Direct Server Return for this Inbound NAT Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - Set-AzureLoadBalancerInboundNatRuleConfig - - Name - - The name of the Inbound NAT Rule. - - String - - - LoadBalancer - - The Load Balancer in which this Inbound NAT Rule will be created. - - PSLoadBalancer - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Inbound NAT Rule. - - PSFrontendIPConfiguration - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which conversation state is maintained within the Load Balancer. - - Int32 - - - EnableFloatingIP - - Enables Direct Server Return for this Inbound NAT Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Inbound NAT Rule. - - String - - String - - - - - - LoadBalancer - - The Load Balancer in which this Inbound NAT Rule will be created. - - PSLoadBalancer - - PSLoadBalancer - - - - - - FrontendIpConfigurationId - - A list of Frontend Ip Ids to associate with this Inbound NAT Rule. - - String - - String - - - - - - Protocol - - The protocol matched by this Inbound NAT Rule. - Options: Tcp or Udp. - - String - - String - - - - - - FrontendPort - - The frontend port matched by this rule. - - Int32 - - Int32 - - - - - - BackendPort - - The backend port for traffic matched by this rule. - - Int32 - - Int32 - - - - - - IdleTimeoutInMinutes - - The length of time in minutes for which conversation state is maintained within the Load Balancer. - - Int32 - - Int32 - - - - - - EnableFloatingIP - - Enables Direct Server Return for this Inbound NAT Rule. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Inbound NAT Rule. - - PSFrontendIPConfiguration - - PSFrontendIPConfiguration - - - - - - BackendIpConfigurationId - - The Id of a Backend Ip Configuration to associate with this Inbound NAT Rule. - - string - - string - - - - - - BackendIpConfiguration - - The Ip Configuration to associate with the Backend Ip for this Inbound NAT Rule. - - psnetworkinterfaceipconfiguration - - psnetworkinterfaceipconfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureLoadBalancerProbeConfig - - Sets the goal state for a Probe configuration - - - - - Set - AzureLoadBalancerProbeConfig - - - - Sets the goal state for a Probe configuration - - - - Set-AzureLoadBalancerProbeConfig - - Name - - The name of the Probe configuration. - - String - - - LoadBalancer - - The Load Balancer with which this Probe configuration will be associated. - - PSLoadBalancer - - - RequestPath - - The path to probe within the load balanced service to determine health. - - String - - - Protocol - - The protocol to use for probing the health of the load balanced service. - Options: Tcp or Http. - - String - - - Port - - The port on which probes should connect to the load balanced service. - - Int32 - - - IntervalInSeconds - - The interval between probes to each instance of the load balanced service. - - Int32 - - - ProbeCount - - The number of per-instance consecutive failures for an instance to be considered unhealthy. - - Int32 - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Probe configuration. - - String - - String - - - - - - LoadBalancer - - The Load Balancer with which this Probe configuration will be associated. - - PSLoadBalancer - - PSLoadBalancer - - - - - - RequestPath - - The path to probe within the load balanced service to determine health. - - String - - String - - - - - - Protocol - - The protocol to use for probing the health of the load balanced service. - Options: Tcp or Http. - - String - - String - - - - - - Port - - The port on which probes should connect to the load balanced service. - - Int32 - - Int32 - - - - - - IntervalInSeconds - - The interval between probes to each instance of the load balanced service. - - Int32 - - Int32 - - - - - - ProbeCount - - The number of per-instance consecutive failures for an instance to be considered unhealthy. - - Int32 - - Int32 - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureLoadBalancerRuleConfig - - Sets the goal state for a Load Balancer Rule configuration - - - - - Set - AzureLoadBalancerRuleConfig - - - - Sets the goal state for a Load Balancer Rule configuration - - - - Set-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancer Rule - - String - - - LoadBalancer - - The Load Balancer with which this Load Balancer Rule will be associated. - - PSLoadBalancer - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Load Balancer Rule. - - String - - - BackendAddressPoolId - - The Id of a Backend Address Pool to associate with this Load Balancer Rule. - - String - - - ProbeId - - The Id of the Probe to associate with this Load Balancer Rule. - - String - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - Set-AzureLoadBalancerRuleConfig - - Name - - The name of the Load Balancer Rule - - String - - - LoadBalancer - - The Load Balancer with which this Load Balancer Rule will be associated. - - PSLoadBalancer - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Load Balancer Rule. - - PSFrontendIPConfiguration - - - BackendAddressPool - - The Backend Address Pool to associate with this Load Balancer Rule. - - PSBackendAddressPool - - - Probe - - The probe to associate with this Load Balancer Rule. - - PSProbe - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp. - - String - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer Rule. - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Load Balancer Rule - - String - - String - - - - - - LoadBalancer - - The Load Balancer with which this Load Balancer Rule will be associated. - - PSLoadBalancer - - PSLoadBalancer - - - - - - FrontendIpConfigurationId - - A list of Frontend Ip Id's to associate with this Load Balancer Rule. - - String - - String - - - - - - BackendAddressPoolId - - The Id of a Backend Address Pool to associate with this Load Balancer Rule. - - String - - String - - - - - - ProbeId - - The Id of the Probe to associate with this Load Balancer Rule. - - String - - String - - - - - - Protocol - - The protocol matched by this Load Balancer Rule. - Options: Tcp or Udp. - - String - - String - - - - - - FrontendPort - - The frontend port matched by this Load Balancer Rule. - - Int32 - - Int32 - - - - - - BackendPort - - The backend port for traffic matched by this Load Balancer Rule. - - Int32 - - Int32 - - - - - - IdleTimeoutInMinutes - - The length of time in minutes for which state of conversations is maintained within the Load Balancer. - - Int32 - - Int32 - - - - - - LoadDistribution - - Specifies the load balancing distribution type to be used by the Load Balancer. -Possible values are -Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers -SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers -SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers - - String - - String - - - - - - EnableFloatingIP - - Enables Direct Server Return for this Load Balancer Rule. - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - FrontendIpConfiguration - - A list of Frontend Ips to associate with this Load Balancer Rule. - - PSFrontendIPConfiguration - - PSFrontendIPConfiguration - - - - - - BackendAddressPool - - The Backend Address Pool to associate with this Load Balancer Rule. - - PSBackendAddressPool - - PSBackendAddressPool - - - - - - Probe - - The probe to associate with this Load Balancer Rule. - - PSProbe - - PSProbe - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureLocalNetworkGateway - - - - - - - Set - AzureLocalNetworkGateway - - - - - - - - Set-AzureLocalNetworkGateway - - LocalNetworkGateway - - - - PSLocalNetworkGateway - - - AddressPrefix - - - - List`1[String] - - - Profile - - - - AzureProfile - - - - - - LocalNetworkGateway - - - - PSLocalNetworkGateway - - PSLocalNetworkGateway - - - - - - AddressPrefix - - - - List`1[String] - - List`1[String] - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureNetworkInterface - - Sets the goal state for an Azure Network Interface - - - - - Set - AzureNetworkInterface - - - - Sets the goal state for an Azure Network Interface - - - - Set-AzureNetworkInterface - - NetworkInterface - - A Network Interface object representing the goal state to which the Network Interface should be set. - - PSNetworkInterface - - - Profile - - - - AzureProfile - - - - - - NetworkInterface - - A Network Interface object representing the goal state to which the Network Interface should be set. - - PSNetworkInterface - - PSNetworkInterface - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureNetworkSecurityGroup - - Sets the goal state for an Network Security Group - - - - - Set - AzureNetworkSecurityGroup - - - - Sets the goal state for an Network Security Group - - - - Set-AzureNetworkSecurityGroup - - NetworkSecurityGroup - - A Network Security Group object representing the goal state to which the Network Security Group should be set. - - PSNetworkSecurityGroup - - - Profile - - - - AzureProfile - - - - - - NetworkSecurityGroup - - A Network Security Group object representing the goal state to which the Network Security Group should be set. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureNetworkSecurityRuleConfig - - Sets the goal state for an Network Security Rule - - - - - Set - AzureNetworkSecurityRuleConfig - - - - Sets the goal state for an Network Security Rule - - - - Set-AzureNetworkSecurityRuleConfig - - Name - - The name of the Network Security Rule. - - String - - - NetworkSecurityGroup - - The Network Security Group object containing the Network Security Rule. - - PSNetworkSecurityGroup - - - Description - - A description for this rule. Restricted to 140 characters. - - String - - - Protocol - - Network protocol this rule applies to. Can be Tcp, Udp or * to match both. - - String - - - SourcePortRange - - Source Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - - DestinationPortRange - - Destination Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - - SourceAddressPrefix - - CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - - DestinationAddressPrefix - - CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - - Access - - Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”. - - String - - - Priority - - Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. - - Int32 - - - Direction - - The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Network Security Rule. - - String - - String - - - - - - NetworkSecurityGroup - - The Network Security Group object containing the Network Security Rule. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - Description - - A description for this rule. Restricted to 140 characters. - - String - - String - - - - - - Protocol - - Network protocol this rule applies to. Can be Tcp, Udp or * to match both. - - String - - String - - - - - - SourcePortRange - - Source Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - String - - - - - - DestinationPortRange - - Destination Port or Range. Integer or range between 0 and 65535 or * to match any. - - String - - String - - - - - - SourceAddressPrefix - - CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - String - - - - - - DestinationAddressPrefix - - CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. - - String - - String - - - - - - Access - - Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”. - - String - - String - - - - - - Priority - - Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. - - Int32 - - Int32 - - - - - - Direction - - The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzurePublicIpAddress - - Sets the goal state for a Public Ip Address - - - - - Set - AzurePublicIpAddress - - - - Sets the goal state for a Public Ip Address - - - - Set-AzurePublicIpAddress - - PublicIpAddress - - A Public IP Address object representing the goal state to which the Public Ip Address should be set. - - PSPublicIpAddress - - - Profile - - - - AzureProfile - - - - - - PublicIpAddress - - A Public IP Address object representing the goal state to which the Public Ip Address should be set. - - PSPublicIpAddress - - PSPublicIpAddress - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureRouteConfig - - Sets the goal state for a Route - - - - - Set - AzureRouteConfig - - - - Sets the goal state for a Route - - - - Set-AzureRouteConfig - - Name - - Name of the Route - - String - - - RouteTable - - The Route Table object with which this Route will be associated. - - PSRouteTable - - - AddressPrefix - - The destination CIDR to which the route applies, such as 10.1.0.0/16 - - String - - - NextHopType - - The type of Azure hop the packet should be sent to. -Possible values are: -VirtualNetworkGateway: Represents an Azure S2S VPN Gateway. -VnetLocal: Represents the local virtual network. For instance, if you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, the route for each subnet in the route table will have a next hop value of Local. -Internet: Represents the default Internet gateway provided by the Azure Infrastructure -VirtualAppliance: Represents a virtual appliance you added to your Azure virtual network. -None: Represents a black hole. Packets forwarded to a black hole will not be forwarded at all. - - String - - - NextHopIpAddress - - Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - Name of the Route - - String - - String - - - - - - RouteTable - - The Route Table object with which this Route will be associated. - - PSRouteTable - - PSRouteTable - - - - - - AddressPrefix - - The destination CIDR to which the route applies, such as 10.1.0.0/16 - - String - - String - - - - - - NextHopType - - The type of Azure hop the packet should be sent to. -Possible values are: -VirtualNetworkGateway: Represents an Azure S2S VPN Gateway. -VnetLocal: Represents the local virtual network. For instance, if you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, the route for each subnet in the route table will have a next hop value of Local. -Internet: Represents the default Internet gateway provided by the Azure Infrastructure -VirtualAppliance: Represents a virtual appliance you added to your Azure virtual network. -None: Represents a black hole. Packets forwarded to a black hole will not be forwarded at all. - - String - - String - - - - - - NextHopIpAddress - - Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureRouteTable - - Sets the goal state for an Azure Route Table - - - - - Set - AzureRouteTable - - - - Sets the goal state for an Azure Route Table - - - - Set-AzureRouteTable - - RouteTable - - A Route Table object representing the goal state to which the Route Table should be set. - - PSRouteTable - - - Profile - - - - AzureProfile - - - - - - RouteTable - - A Route Table object representing the goal state to which the Route Table should be set. - - PSRouteTable - - PSRouteTable - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureVirtualNetwork - - Sets the goal state for an Azure Virtual Network - - - - - Set - AzureVirtualNetwork - - - - Sets the goal state for an Azure Virtual Network - - - - Set-AzureVirtualNetwork - - VirtualNetwork - - A Virtual Network object representing the goal state to which the Virtual Network should be set. - - PSVirtualNetwork - - - Profile - - - - AzureProfile - - - - - - VirtualNetwork - - A Virtual Network object representing the goal state to which the Virtual Network should be set. - - PSVirtualNetwork - - PSVirtualNetwork - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureVirtualNetworkGatewayConnection - - - - - - - Set - AzureVirtualNetworkGatewayConnection - - - - - - - - Set-AzureVirtualNetworkGatewayConnection - - VirtualNetworkGatewayConnection - - - - PSVirtualNetworkGatewayConnection - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - VirtualNetworkGatewayConnection - - - - PSVirtualNetworkGatewayConnection - - PSVirtualNetworkGatewayConnection - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureVirtualNetworkGatewayConnectionSharedKey - - - - - - - Set - AzureVirtualNetworkGatewayConnectionSharedKey - - - - - - - - Set-AzureVirtualNetworkGatewayConnectionSharedKey - - Name - - - - String - - - ResourceGroupName - - - - String - - - Value - - - - String - - - Force - - - - SwitchParameter - - - Profile - - - - AzureProfile - - - - - - Name - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Value - - - - String - - String - - - - - - Force - - - - SwitchParameter - - SwitchParameter - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureVirtualNetworkSubnetConfig - - Sets the goal state for a Subnet within an Azure Virtual Network - - - - - Set - AzureVirtualNetworkSubnetConfig - - - - Sets the goal state for a Subnet within an Azure Virtual Network - - - - Set-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet. - - String - - - VirtualNetwork - - The Virtual Network containing the Subnet. - - PSVirtualNetwork - - - AddressPrefix - - The IP range covered by this Subnet. - - String - - - NetworkSecurityGroup - - The Network Security Group object containing ACLs that will apply to this Subnet. - - PSNetworkSecurityGroup - - - RouteTable - - The Route Table object containing Routes that will apply to this Subnet. - - PSRouteTable - - - Profile - - - - AzureProfile - - - - Set-AzureVirtualNetworkSubnetConfig - - Name - - The name of the Subnet. - - String - - - VirtualNetwork - - The Virtual Network containing the Subnet. - - PSVirtualNetwork - - - AddressPrefix - - The IP range covered by this Subnet. - - String - - - NetworkSecurityGroupId - - A reference to a Network Security Group containing ACLs that will apply to this Subnet. - - String - - - RouteTableId - - A reference to a Route Table object containing Routes that will apply to this Subnet. - - String - - - Profile - - - - AzureProfile - - - - - - Name - - The name of the Subnet. - - String - - String - - - - - - VirtualNetwork - - The Virtual Network containing the Subnet. - - PSVirtualNetwork - - PSVirtualNetwork - - - - - - AddressPrefix - - The IP range covered by this Subnet. - - String - - String - - - - - - NetworkSecurityGroup - - The Network Security Group object containing ACLs that will apply to this Subnet. - - PSNetworkSecurityGroup - - PSNetworkSecurityGroup - - - - - - RouteTable - - The Route Table object containing Routes that will apply to this Subnet. - - PSRouteTable - - PSRouteTable - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - NetworkSecurityGroupId - - A reference to a Network Security Group containing ACLs that will apply to this Subnet. - - String - - String - - - - - - RouteTableId - - A reference to a Route Table object containing Routes that will apply to this Subnet. - - String - - String - - - - - - DnsServer - - The Dns servers to be used for performing Dns lookups from this Subnet. - - list`1[string] - - list`1[string] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Start-AzureApplicationGateway - - - - - - - Start - AzureApplicationGateway - - - - - - - - Start-AzureApplicationGateway - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Stop-AzureApplicationGateway - - - - - - - Stop - AzureApplicationGateway - - - - - - - - Stop-AzureApplicationGateway - - ApplicationGateway - - - - PSApplicationGateway - - - Profile - - - - AzureProfile - - - - - - ApplicationGateway - - - - PSApplicationGateway - - PSApplicationGateway - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Test-AzureDnsAvailability - - Checks whether a domain name in the cloudapp.net zone is available for use - - - - - Test - AzureDnsAvailability - - - - Checks whether a domain name in the {region}.cloudapp.azure.com zone is available for use - - - - Test-AzureDnsAvailability - - DomainQualifiedName - - The domain name to be verified. - It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. - - String - - - Location - - The Azure Region in which you wish to check for availability. - - String - - - Profile - - - - AzureProfile - - - - - - DomainQualifiedName - - The domain name to be verified. - It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$. - - String - - String - - - - - - Location - - The Azure Region in which you wish to check for availability. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file +The following commands create the application gateway.The first command creates an IP configuration named GatewayIp01 for the subnet created previously.The second command creates a back-end server pool named Pool01 with a list of back-end IP addresses and stores the pool in the $Pool variable.The third command creates the settings for the back-end server pool and stores the settings in the $PoolSetting variable.The forth command creates a front-end port on port 80, names it FrontEndPort01, and stores the port in the $FrontEndPort variable.The fifth command creates a public IP address by using New-AzurePublicIpAddress. The sixth command creates a front-end IP configuration using $PublicIp, names it FrontEndPortConfig01, and stores it in the $FrontEndIpConfig variable.The seventh command creates a listener using the previously created $FrontEndIpConfig $FrontEndPort.The eighth command creates a rule for the listener.The ninth command sets the SKU.The tenth command creates the gateway using the objects set by the previous commands. +PS C:\> $GatewayIPconfig = New-AzureApplicationGatewayIPConfiguration -Name "GatewayIp01" -Subnet $Subnet +PS C:\> $Pool = New-AzureApplicationGatewayBackendAddressPool -Name "Pool01" -BackendIPAddresses 10.10.10.1, 10.10.10.2, 10.10.10.3 +PS C:\> $PoolSetting = New-AzureApplicationGatewayBackendHttpSettings -Name "PoolSetting01" -Port 80 -Protocol "Http" -CookieBasedAffinity "Disabled" +PS C:\> $FrontEndPort = New-AzureApplicationGatewayFrontendPort -Name "FrontEndPort01" -Port 80 +# Create a public IP address +PS C:\> $PublicIp = New-AzurePublicIpAddress -ResourceGroupName "ResourceGroup01" -Name $PublicIpName -Location "West US" -AllocationMethod "Dynamic" +PS C:\> $FrontEndIpConfig = New-AzureApplicationGatewayFrontendIPConfig -Name "FrontEndConfig01" -PublicIPAddress $PublicIp +PS C:\> $Listener = New-AzureApplicationGatewayHttpListener -Name $listenerName -Protocol "Http" -FrontendIpConfiguration $FrontEndIpConfig -FrontendPort $ FrontEndPort +PS C:\> $Rule = New-AzureApplicationGatewayRequestRoutingRule -Name "Rule01" -RuleType basic -BackendHttpSettings $PoolSetting -HttpListener $Listener -BackendAddressPool $Pool +PS C:\> $Sku = New-AzureApplicationGatewaySku -Name "Standard_Small" -Tier Standard -Capacity 2 +PS C:\> $Gateway = New-AzureApplicationGateway -Name "AppGateway01" -ResourceGroupName "ResourceGroup01" -Location "West US" -BackendAddressPools $Pool -BackendHttpSettingsCollection $PoolSetting -FrontendIpConfigurations $FrontEndIpConfig -GatewayIpConfigurations $GatewayIpConfig -FrontendPorts $FrontEndPort -HttpListeners $Listener -RequestRoutingRules $Rule -Sku $Sku + + + The following commands create an application gateway by first creating a resource group and a virtual network, as well as the following: + +-- A back-end server pool +-- Back-end server pool settings +-- Front-end ports +-- Front-end IP addresses +-- A request routing rule + + + + + + + + + + + + + New-AzureApplicationGatewayBackendAddressPool + + + + New-AzureApplicationGatewayBackendHttpSettings + + + + New-AzureApplicationGatewayFrontendIPConfig + + + + New-AzureApplicationGatewayFrontendPort + + + + New-AzureApplicationGatewayHttpListener + + + + New-AzureApplicationGatewayIPConfiguration + + + + New-AzureApplicationGatewayRequestRoutingRule + + + + New-AzureApplicationGatewaySku + + + + New-AzureVirtualNetwork + + + + New-AzureVirtualNetworkSubnetConfig + + + + + + + New-AzureLoadBalancerBackendAddressPoolConfig + + Creates a backend address pool configuration for a load balancer. + + + + + New + AzureLoadBalancerBackendAddressPoolConfig + + + + The New-AzureLoadBalancerBackendAddressPoolConfig cmdlet creates a backend address pool configuration for an Azure load balancer. + + + + New-AzureLoadBalancerBackendAddressPoolConfig + + Profile + + Specifies an Azure profile. + + Microsoft.Azure.Common.Authentication.Models.AzureProfile + + + Name + + Specifies the name of the address pool configuration to create. + + System.String + + + + + + Name + + Specifies the name of the address pool configuration to create. + + System.String + + System.String + + + none + + + Profile + + Specifies an Azure profile. + + Microsoft.Azure.Common.Authentication.Models.AzureProfile + + Microsoft.Azure.Common.Authentication.Models.AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerBackendAddressPoolConfig + + + + Get-AzureLoadBalancerBackendAddressPoolConfig + + + + Remove-AzureLoadBalancerBackendAddressPoolConfig + + + + + + + New-AzureLoadBalancerFrontendIpConfig + + Creates a front-end IP configuration for a load balancer. + + + + + New + AzureLoadBalancerFrontendIpConfig + + + + The New-AzureLoadBalancerFrontendIpConfig cmdlet creates a front-end IP configuration for an Azure load balancer. + + + + New-AzureLoadBalancerFrontendIpConfig + + PrivateIpAddress + + Specifies the private IP address of the load balancer. Specify this parameter only if you also specify the Subnet parameter. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddressId + + Specifies the ID of the PublicIpAddress object to associate with a front-end IP configuration. + + String + + + SubnetId + + Specifies the ID of the subnet in which to create a front-end IP configuration. + + String + + + Name + + Specifies the front-end IP configuration to create. + + String + + + + New-AzureLoadBalancerFrontendIpConfig + + PrivateIpAddress + + Specifies the private IP address of the load balancer. Specify this parameter only if you also specify the Subnet parameter. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + PSPublicIpAddress + + + Subnet + + Specifies the Subnet object in which to create a front-end IP configuration. + + PSSubnet + + + Name + + Specifies the front-end IP configuration to create. + + String + + + + + + Name + + Specifies the front-end IP configuration to create. + + String + + String + + + none + + + PrivateIpAddress + + Specifies the private IP address of the load balancer. Specify this parameter only if you also specify the Subnet parameter. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIpAddress + + Specifies the PublicIpAddress object to associate with a front-end IP configuration. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIpAddressId + + Specifies the ID of the PublicIpAddress object to associate with a front-end IP configuration. + + String + + String + + + none + + + Subnet + + Specifies the Subnet object in which to create a front-end IP configuration. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the ID of the subnet in which to create a front-end IP configuration. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerFrontendIpConfig + + + + Get-AzureLoadBalancerFrontendIpConfig + + + + Remove-AzureLoadBalancerFrontendIpConfig + + + + Set-AzureLoadBalancerFrontendIpConfig + + + + + + + New-AzureLoadBalancerInboundNatRuleConfig + + Creates an inbound NAT rule configuration for a load balancer. + + + + + New + AzureLoadBalancerInboundNatRuleConfig + + + + The New-AzureLoadBalancerInboundNatRuleConfig cmdlet creates an inbound network address translation (NAT) rule configuration for an Azure load balancer. + + + + New-AzureLoadBalancerInboundNatRuleConfig + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, for which the state of conversations is maintained in a load balancer. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies a protocol. + + + Tcp + Udp + + + + Name + + Specifies the name of the rule configuration to create. + + String + + + + New-AzureLoadBalancerInboundNatRuleConfig + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, for which the state of conversations is maintained in a load balancer. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies a protocol. + + + Tcp + Udp + + + + Name + + Specifies the name of the rule configuration to create. + + String + + + + + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + Int32 + + + none + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + PSFrontendIPConfiguration + + + none + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + System.String + + + none + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + Int32 + + + none + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, for which the state of conversations is maintained in a load balancer. + + Int32 + + Int32 + + + none + + + Name + + Specifies the name of the rule configuration to create. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies a protocol. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + + + Get-AzureLoadBalancerInboundNatRuleConfig + + + + Remove-AzureLoadBalancerInboundNatRuleConfig + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + + + + + + New-AzureLoadBalancerProbeConfig + + Creates a probe configuration for a load balancer. + + + + + New + AzureLoadBalancerProbeConfig + + + + The New-AzureLoadBalancerProbeConfig cmdlet creates a probe configuration for an Azure load balancer. + + + + New-AzureLoadBalancerProbeConfig + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol to use for the probe configuration. The acceptable values for this parameter are:Tcp or Http. + + + Tcp + Http + + + + RequestPath + + Specifies the path in a load-balanced service to probe to determine health. + + String + + + IntervalInSeconds + + Specifies the interval, in seconds, between probes to each instance of a load-balanced service. + + Int32 + + + Name + + Specifies the name of the probe configuration to create. + + String + + + Port + + Specifies the port on which the new probe should connect to a load-balanced service. + + Int32 + + + ProbeCount + + Specifies the number of per-instance consecutive failures for an instance to be considered unhealthy. + + Int32 + + + + + + IntervalInSeconds + + Specifies the interval, in seconds, between probes to each instance of a load-balanced service. + + Int32 + + Int32 + + + none + + + Name + + Specifies the name of the probe configuration to create. + + String + + String + + + none + + + Port + + Specifies the port on which the new probe should connect to a load-balanced service. + + Int32 + + Int32 + + + none + + + ProbeCount + + Specifies the number of per-instance consecutive failures for an instance to be considered unhealthy. + + Int32 + + Int32 + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol to use for the probe configuration. The acceptable values for this parameter are:Tcp or Http. + + String + + String + + + none + + + RequestPath + + Specifies the path in a load-balanced service to probe to determine health. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerProbeConfig + + + + Get-AzureLoadBalancerProbeConfig + + + + Remove-AzureLoadBalancerProbeConfig + + + + Set-AzureLoadBalancerProbeConfig + + + + + + + New-AzureLoadBalancerRuleConfig + + Creates a rule configuration for a load balancer. + + + + + New + AzureLoadBalancerRuleConfig + + + + The New-AzureLoadBalancerRuleConfig cmdlet creates a rule configuration for an Azure load balancer. + + + + New-AzureLoadBalancerRuleConfig + + BackendAddressPool + + Specifies a BackendAddressPool object to associate with a load balancer rule configuration. + + PSBackendAddressPool + + + BackendPort + + Specifies the backend port for traffic that is matched by this load balancer rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + + LoadDistribution + + Specifies a load distribution. + + + Default + SourceIP + SourceIPProtocol + + + + Probe + + Specifies a probe to associate with a load balancer rule configuration. + + PSProbe + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by a load balancer rule configuration. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + Name + + Specifies the name of the load balancing rule to create. + + String + + + + New-AzureLoadBalancerRuleConfig + + BackendAddressPoolId + + Specifies the ID of a BackendAddressPool object to associate with a load balancer rule configuration. + + String + + + BackendPort + + Specifies the backend port for traffic that is matched by this load balancer rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + String + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + + LoadDistribution + + Specifies a load distribution. + + + Default + SourceIP + SourceIPProtocol + + + + ProbeId + + Specifies the ID of the probe to associate with a load balancer rule configuration. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by a load balancer rule configuration. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + Name + + Specifies the name of the load balancing rule to create. + + String + + + + + + BackendAddressPool + + Specifies a BackendAddressPool object to associate with a load balancer rule configuration. + + PSBackendAddressPool + + PSBackendAddressPool + + + none + + + BackendAddressPoolId + + Specifies the ID of a BackendAddressPool object to associate with a load balancer rule configuration. + + String + + String + + + none + + + BackendPort + + Specifies the backend port for traffic that is matched by this load balancer rule configuration. + + Int32 + + Int32 + + + none + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + PSFrontendIPConfiguration + + + none + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + String + + String + + + none + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + Int32 + + + none + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + Int32 + + + none + + + LoadDistribution + + Specifies a load distribution. + + String + + String + + + none + + + Name + + Specifies the name of the load balancing rule to create. + + String + + String + + + none + + + Probe + + Specifies a probe to associate with a load balancer rule configuration. + + PSProbe + + PSProbe + + + none + + + ProbeId + + Specifies the ID of the probe to associate with a load balancer rule configuration. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol that is matched by a load balancer rule configuration. The acceptable values for this parameter are:Tcp or Udp. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerRuleConfig + + + + Get-AzureLoadBalancerRuleConfig + + + + Remove-AzureLoadBalancerRuleConfig + + + + Set-AzureLoadBalancerRuleConfig + + + + + + + New-AzureLoadBalancer + + Creates a load balancer. + + + + + New + AzureLoadBalancer + + + + The New-AzureLoadBalancer cmdlet creates an Azure load balancer. + + + + New-AzureLoadBalancer + + BackendAddressPool + + Specifies a backend address pool to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Force + + Indicates that this cmdlet creates a load balancer even if a load balancer with the same name already exists. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + InboundNatRule + + Specifies a list of inbound network address translation (NAT) rules to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + LoadBalancingRule + + Specifies a list of load balancing rules to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Probe + + Specifies a list of probes to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Tag + + Specifies an array of tags to associate with a load balancer. + + Hashtable[] + + + Location + + Specifies the region in which to create a load balancer. + + String + + + Name + + Specifies the name of the load balancer to create. + + String + + + ResourceGroupName + + Specifies the name of the resource group in which to create a load balancer. + + String + + + + + + BackendAddressPool + + Specifies a backend address pool to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Force + + Indicates that this cmdlet creates a load balancer even if a load balancer with the same name already exists. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + InboundNatRule + + Specifies a list of inbound network address translation (NAT) rules to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + LoadBalancingRule + + Specifies a list of load balancing rules to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Location + + Specifies the region in which to create a load balancer. + + String + + String + + + none + + + Name + + Specifies the name of the load balancer to create. + + String + + String + + + none + + + Probe + + Specifies a list of probes to associate with a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group in which to create a load balancer. + + String + + String + + + none + + + Tag + + Specifies an array of tags to associate with a load balancer. + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureLoadBalancer + + + + Remove-AzureLoadBalancer + + + + Set-AzureLoadBalancer + + + + + + + New-AzureLocalNetworkGateway + + + + + + + + New + AzureLocalNetworkGateway + + + + + + + New-AzureLocalNetworkGateway + + AddressPrefix + + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Force + + + + + GatewayIpAddress + + + String + + + Profile + + + AzureProfile + + + Tag + + + Hashtable[] + + + Location + + + String + + + Name + + + String + + + ResourceGroupName + + + String + + + + + + AddressPrefix + + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + GatewayIpAddress + + + String + + String + + + none + + + Location + + + String + + String + + + none + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + Tag + + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + New-AzureNetworkInterface + + Creates a network interface. + + + + + New + AzureNetworkInterface + + + + The New-AzureNetworkInterface cmdlet creates an Azure network interface. + + + + New-AzureNetworkInterface + + DnsServer + + Specifies the DNS server for the network interface. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + EnableIPForwarding + + + + + + + Force + + Forces the creation of the network interface even if a network interface with the same name already exists. + + + + InternalDnsNameLabel + + + + + System.String + + + IpConfigurationName + + Specifies the name of an IP configuration. + + String + + + LoadBalancerBackendAddressPoolId + + Specifies the ID of a BackendAddressPool object. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + LoadBalancerInboundNatRuleId + + Specifies the ID of an inbound NAT rule configuration for a load balancer. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + + PrivateIpAddress + + Specifies a static IPv4 IP address to assign to this network interface. This parameter is optional. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddressId + + Specifies the ID of a PublicIPAddress object to assign to a network interface. + + String + + + Tag + + Specifies a dictionary of tags to associate with a network interface. + + Hashtable[] + + + Location + + Specifies the region for a network interface. + + String + + + Name + + Specifies the name of the network interface to create. + + String + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet creates a network interface for the resource group that this parameter specifies. + + String + + + SubnetId + + Specifies the ID of the subnet for which to create a network interface. + + String + + + + New-AzureNetworkInterface + + DnsServer + + Specifies the DNS server for the network interface. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + EnableIPForwarding + + + + + + + Force + + Forces the creation of the network interface even if a network interface with the same name already exists. + + + + InternalDnsNameLabel + + + + + System.String + + + IpConfigurationName + + Specifies the name of an IP configuration. + + String + + + LoadBalancerBackendAddressPool + + Specifies a BackendAddressPool object. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + LoadBalancerInboundNatRule + + Specifies an inbound NAT rule configuration for a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. + + PSNetworkSecurityGroup + + + PrivateIpAddress + + Specifies a static IPv4 IP address to assign to this network interface. This parameter is optional. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddress + + Specifies a PublicIPAddress object to assign to a network interface. + + PSPublicIpAddress + + + Tag + + Specifies a dictionary of tags to associate with a network interface. + + Hashtable[] + + + Location + + Specifies the region for a network interface. + + String + + + Name + + Specifies the name of the network interface to create. + + String + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet creates a network interface for the resource group that this parameter specifies. + + String + + + Subnet + + Specifies a Subnet object. This cmdlet creates a network interface for the subnet that this parameter specifies. + + PSSubnet + + + + + + DnsServer + + Specifies the DNS server for the network interface. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + EnableIPForwarding + + + + + SwitchParameter + + SwitchParameter + + + none + + + Force + + Forces the creation of the network interface even if a network interface with the same name already exists. + + SwitchParameter + + SwitchParameter + + + none + + + InternalDnsNameLabel + + + + + System.String + + System.String + + + none + + + IpConfigurationName + + Specifies the name of an IP configuration. + + String + + String + + + none + + + LoadBalancerBackendAddressPool + + Specifies a BackendAddressPool object. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + LoadBalancerBackendAddressPoolId + + Specifies the ID of a BackendAddressPool object. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + LoadBalancerInboundNatRule + + Specifies an inbound NAT rule configuration for a load balancer. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + LoadBalancerInboundNatRuleId + + Specifies the ID of an inbound NAT rule configuration for a load balancer. + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + Location + + Specifies the region for a network interface. + + String + + String + + + none + + + Name + + Specifies the name of the network interface to create. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + String + + + none + + + PrivateIpAddress + + Specifies a static IPv4 IP address to assign to this network interface. This parameter is optional. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIpAddress + + Specifies a PublicIPAddress object to assign to a network interface. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIpAddressId + + Specifies the ID of a PublicIPAddress object to assign to a network interface. + + String + + String + + + none + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet creates a network interface for the resource group that this parameter specifies. + + String + + String + + + none + + + Subnet + + Specifies a Subnet object. This cmdlet creates a network interface for the subnet that this parameter specifies. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the ID of the subnet for which to create a network interface. + + String + + String + + + none + + + Tag + + Specifies a dictionary of tags to associate with a network interface. + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkInterface + + + + Remove-AzureNetworkInterface + + + + Set-AzureNetworkInterface + + + + + + + New-AzureNetworkSecurityGroup + + Creates a network security group. + + + + + New + AzureNetworkSecurityGroup + + + + The New-AzureNetworkSecurityGroup cmdlet creates an Azure network security group. + + + + New-AzureNetworkSecurityGroup + + Force + + Forces the command to run without asking for user confirmation. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + SecurityRules + + Specifies a list of network security rule objects to create in a network security group. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Tag + + Specifies a dictionary of tags to associate with a network security group. + + Hashtable[] + + + Location + + Specifies the region for which to create a network security group. + + String + + + Name + + Specifies the name of the network security group to create. + + String + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet creates a network security group in the resource group that this parameter specifies. + + String + + + + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Location + + Specifies the region for which to create a network security group. + + String + + String + + + none + + + Name + + Specifies the name of the network security group to create. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet creates a network security group in the resource group that this parameter specifies. + + String + + String + + + none + + + SecurityRules + + Specifies a list of network security rule objects to create in a network security group. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Tag + + Specifies a dictionary of tags to associate with a network security group. + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkSecurityGroup + + + + Remove-AzureNetworkSecurityGroup + + + + Set-AzureNetworkSecurityGroup + + + + + + + New-AzureNetworkSecurityRuleConfig + + Creates a network security rule configuration. + + + + + New + AzureNetworkSecurityRuleConfig + + + + The New-AzureNetworkSecurityRuleConfig cmdlet creates an Azure network security rule configuration for a network security group. + + + + New-AzureNetworkSecurityRuleConfig + + Access + + Specifies whether network traffic is allowed or denied. The acceptable values for this parameter are:Allow and Deny. + + + Allow + Deny + + + + Description + + Specifies a description of the network security rule configuration to create. + + String + + + DestinationAddressPrefix + + Specifies a destination address prefix. The acceptable values for this parameter are: + +-- A Classless Interdomain Routing (CIDR) address +-- A destination IP address range +-- A wildcard character (*) to match any IP address + You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. + + String + + + DestinationPortRange + + Specifies a destination port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + + Direction + + Specifies whether a rule is evaluated on incoming or outgoing traffic. The acceptable values for this parameter are:Inbound and Outbound. + + + Inbound + Outbound + + + + Priority + + Specifies the priority of a rule configuration. The acceptable values for this parameter are:An integer between 100 and 4096. + The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the network protocol that a new rule configuration applies to. The acceptable values for this parameter are: + +-- Tcp +-- Udp +-- wildcard character (*) to match both. + + + Tcp + Udp + * + + + + SourceAddressPrefix + + Specifies a source address prefix. The acceptable values for this parameter are: + +-- A CIDR +-- A source IP range +-- A wildcard character (*) to match any IP address. + You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. + + String + + + SourcePortRange + + Specifies the source port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + + Name + + Specifies the name of the network security rule configuration to create. + + String + + + + + + Access + + Specifies whether network traffic is allowed or denied. The acceptable values for this parameter are:Allow and Deny. + + String + + String + + + none + + + Description + + Specifies a description of the network security rule configuration to create. + + String + + String + + + none + + + DestinationAddressPrefix + + Specifies a destination address prefix. The acceptable values for this parameter are: + +-- A Classless Interdomain Routing (CIDR) address +-- A destination IP address range +-- A wildcard character (*) to match any IP address + You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. + + String + + String + + + none + + + DestinationPortRange + + Specifies a destination port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + String + + + none + + + Direction + + Specifies whether a rule is evaluated on incoming or outgoing traffic. The acceptable values for this parameter are:Inbound and Outbound. + + String + + String + + + none + + + Name + + Specifies the name of the network security rule configuration to create. + + String + + String + + + none + + + Priority + + Specifies the priority of a rule configuration. The acceptable values for this parameter are:An integer between 100 and 4096. + The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + + Int32 + + Int32 + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the network protocol that a new rule configuration applies to. The acceptable values for this parameter are: + +-- Tcp +-- Udp +-- wildcard character (*) to match both. + + String + + String + + + none + + + SourceAddressPrefix + + Specifies a source address prefix. The acceptable values for this parameter are: + +-- A CIDR +-- A source IP range +-- A wildcard character (*) to match any IP address. + You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. + + String + + String + + + none + + + SourcePortRange + + Specifies the source port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureNetworkSecurityRuleConfig + + + + Get-AzureNetworkSecurityRuleConfig + + + + Remove-AzureNetworkSecurityRuleConfig + + + + Set-AzureNetworkSecurityRuleConfig + + + + + + + New-AzurePublicIpAddress + + Creates a public IP address. + + + + + New + AzurePublicIpAddress + + + + The New-AzurePublicIpAddress cmdlet creates a public IP address. + + + + New-AzurePublicIpAddress + + DomainNameLabel + + Specifies the relative DNS name for a public IP address. + + String + + + Force + + Forces the command to run without asking for user confirmation. + + + + IdleTimeoutInMinutes + + Specifies the idle time-out, in minutes. + + Int32 + + + Location + + Specifies the region in which to create a public IP address. + + String + + + Name + + Specifies the name of the public IP address to create. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + ReverseFqdn + + Specifies a reverse fully qualified domain name (FQDN). + + System.String + + + Tag + + Specifies a dictionary of tags to associate with a public IP address. + + Hashtable[] + + + AllocationMethod + + Specifies the method with which to allocate the public IP address. The acceptable values for this parameter are:Static or Dynamic. + + + Dynamic + Static + + + + ResourceGroupName + + Specifies the name of the resource group in which to create a public IP address. + + String + + + + + + AllocationMethod + + Specifies the method with which to allocate the public IP address. The acceptable values for this parameter are:Static or Dynamic. + + String + + String + + + none + + + DomainNameLabel + + Specifies the relative DNS name for a public IP address. + + String + + String + + + none + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + IdleTimeoutInMinutes + + Specifies the idle time-out, in minutes. + + Int32 + + Int32 + + + none + + + Location + + Specifies the region in which to create a public IP address. + + String + + String + + + none + + + Name + + Specifies the name of the public IP address to create. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group in which to create a public IP address. + + String + + String + + + none + + + ReverseFqdn + + Specifies a reverse fully qualified domain name (FQDN). + + System.String + + System.String + + + none + + + Tag + + Specifies a dictionary of tags to associate with a public IP address. + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzurePublicIpAddress + + + + Remove-AzurePublicIpAddress + + + + Set-AzurePublicIpAddress + + + + + + + New-AzureRouteConfig + + Creates a route for a route table. + + + + + New + AzureRouteConfig + + + + The New-AzureRouteConfig cmdlet creates a route for an Azure route table. + + + + New-AzureRouteConfig + + AddressPrefix + + Specifies the destination, in Classless Interdomain Routing (CIDR) format, to which the route applies. + + String + + + NextHopIpAddress + + Specifies the IP address of a virtual appliance that you add to your Azure virtual network. This route forwards packets to that address. Specify this parameter only if you specify a value of VirtualAppliance for the NextHopType parameter. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies a name for the route. + + String + + + NextHopType + + Specifies how this route forwards packets. Valid values are: + +-- Internet. The default Internet gateway provided by Azure. +-- None. If you specify this value, the route does not forward packets. +-- VirtualAppliance. A virtual appliance that you add to your Azure virtual network. +-- VirtualNetworkGateway. An Azure server-to-server virtual private network gateway. +-- VnetLocal. The local virtual network. If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, select a value of VnetLocal for each subnet to forward to the other subnet. + + + Internet + None + VirtualAppliance + VirtualNetworkGateway + VnetLocal + + + + + + + AddressPrefix + + Specifies the destination, in Classless Interdomain Routing (CIDR) format, to which the route applies. + + String + + String + + + none + + + Name + + Specifies a name for the route. + + String + + String + + + none + + + NextHopIpAddress + + Specifies the IP address of a virtual appliance that you add to your Azure virtual network. This route forwards packets to that address. Specify this parameter only if you specify a value of VirtualAppliance for the NextHopType parameter. + + String + + String + + + none + + + NextHopType + + Specifies how this route forwards packets. Valid values are: + +-- Internet. The default Internet gateway provided by Azure. +-- None. If you specify this value, the route does not forward packets. +-- VirtualAppliance. A virtual appliance that you add to your Azure virtual network. +-- VirtualNetworkGateway. An Azure server-to-server virtual private network gateway. +-- VnetLocal. The local virtual network. If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, select a value of VnetLocal for each subnet to forward to the other subnet. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Create a route + + + + + PS C:\>$Route = New-AzureRouteConfig -Name "route07" -AddressPrefix 10.1.0.0/16 -NextHopType VnetLocal +PS C:\> $Route +Name : route07 +Id : +Etag : +ProvisioningState : +AddressPrefix : 10.1.0.0/16 +NextHopType : VnetLocal +NextHopIpAddress : + + + The first command creates a route named route07, and then stores it in the $Route variable. This route forwards packets to the local virtual network. + The second command displays the properties of the new network. + + + + + + + + + + + + + Add-AzureRouteConfig + + + + Get-AzureRouteConfig + + + + Remove-AzureRouteConfig + + + + Set-AzureRouteConfig + + + + + + + New-AzureRouteTable + + Creates a route table. + + + + + New + AzureRouteTable + + + + The New-AzureRouteTable cmdlet creates an Azure route table. + + + + New-AzureRouteTable + + Force + + Indicates that this cmdlet creates a route table even if a route table that has the same name already exists. + + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Route + + Specifies an array of Route objects to associate with the route table. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 + + + Tag + + Specifies a dictionary of tags to associate with the route table. + + Hashtable[] + + + Location + + Specifies the Azure region in which this cmdlet creates a route table. For more information, see Azure Regions (http://azure.microsoft.com/en-us/regions/). + + String + + + Name + + Specifies a name for the route table. + + String + + + ResourceGroupName + + Specifies the name of the resource group in which this cmdlet creates a route table. + + String + + + + + + Force + + Indicates that this cmdlet creates a route table even if a route table that has the same name already exists. + + SwitchParameter + + SwitchParameter + + + none + + + Location + + Specifies the Azure region in which this cmdlet creates a route table. For more information, see Azure Regions (http://azure.microsoft.com/en-us/regions/). + + String + + String + + + none + + + Name + + Specifies a name for the route table. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group in which this cmdlet creates a route table. + + String + + String + + + none + + + Route + + Specifies an array of Route objects to associate with the route table. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 + + + none + + + Tag + + Specifies a dictionary of tags to associate with the route table. + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Create a route table that contains a route + + + + + PS C:\>$Route = New-AzureRouteConfig -Name "route07" -AddressPrefix 10.1.0.0/16 -NextHopType VnetLocal +PS C:\> New-AzureRouteTable -Name "routetable01" -ResourceGroupName "ResourceGroup11" -Location EASTUS -Route $Route +Name : routetable01 +ResourceGroupName : ResourceGroup11 +Location : eastus +Id : /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Microsoft.Networ + k/routeTables/myroutetable +Etag : W/"db5f4e12-3f34-465b-92dd-0ab3bf6fc274" +ProvisioningState : Succeeded +Tags : +Routes : [ + { + "Name": "route07", + "Etag": "W/\"db5f4e12-3f34-465b-92dd-0ab3bf6fc274\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route07", + "AddressPrefix": "10.1.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + } + ] +Subnets : [] + + + The first command creates a route named route07 by using the New-AzureRouteConfig cmdlet, and then stores it in the $Route variable. This route forwards packets to the local virtual network. + The second command creates a route table named routetable01, and adds the route stored in $route to the new table. The command specifies the resource group to which the table belongs and the location for the table. + + + + + + + + + + + + + Get-AzureRouteTable + + + + New-AzureRouteConfig + + + + Remove-AzureRouteTable + + + + Set-AzureRouteTable + + + + + + + New-AzureVirtualNetworkGatewayConnection + + + + + + + + New + AzureVirtualNetworkGatewayConnection + + + + + + + New-AzureVirtualNetworkGatewayConnection + + Force + + + + + LocalNetworkGateway2 + + + PSLocalNetworkGateway + + + Profile + + + AzureProfile + + + RoutingWeight + + + Int32 + + + SharedKey + + + String + + + Tag + + + Hashtable[] + + + VirtualNetworkGateway2 + + + PSVirtualNetworkGateway + + + ConnectionType + + + + IPsec + Vnet2Vnet + ExpressRoute + VPNClient + + + + Location + + + String + + + Name + + + String + + + ResourceGroupName + + + String + + + VirtualNetworkGateway1 + + + PSVirtualNetworkGateway + + + + + + ConnectionType + + + String + + String + + + none + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + LocalNetworkGateway2 + + + PSLocalNetworkGateway + + PSLocalNetworkGateway + + + none + + + Location + + + String + + String + + + none + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + RoutingWeight + + + Int32 + + Int32 + + + none + + + SharedKey + + + String + + String + + + none + + + Tag + + + Hashtable[] + + Hashtable[] + + + none + + + VirtualNetworkGateway1 + + + PSVirtualNetworkGateway + + PSVirtualNetworkGateway + + + none + + + VirtualNetworkGateway2 + + + PSVirtualNetworkGateway + + PSVirtualNetworkGateway + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + New-AzureVirtualNetworkGatewayIpConfig + + + + + + + + New + AzureVirtualNetworkGatewayIpConfig + + + + + + + New-AzureVirtualNetworkGatewayIpConfig + + PrivateIpAddress + + + String + + + Profile + + + AzureProfile + + + PublicIpAddressId + + + String + + + SubnetId + + + String + + + Name + + + String + + + + New-AzureVirtualNetworkGatewayIpConfig + + PrivateIpAddress + + + String + + + Profile + + + AzureProfile + + + PublicIpAddress + + + PSPublicIpAddress + + + Subnet + + + PSSubnet + + + Name + + + String + + + + + + Name + + + String + + String + + + none + + + PrivateIpAddress + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + PublicIpAddress + + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIpAddressId + + + String + + String + + + none + + + Subnet + + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + New-AzureVirtualNetworkGateway + + + + + + + + New + AzureVirtualNetworkGateway + + + + + + + New-AzureVirtualNetworkGateway + + EnableBgp + + + Boolean + + + Force + + + + + GatewayType + + + String + + + IpConfigurations + + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Profile + + + AzureProfile + + + Tag + + + Hashtable[] + + + VpnType + + + + PolicyBased + RouteBased + + + + Location + + + String + + + Name + + + String + + + ResourceGroupName + + + String + + + + + + EnableBgp + + + Boolean + + Boolean + + + none + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + GatewayType + + + String + + String + + + none + + + IpConfigurations + + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Location + + + String + + String + + + none + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + Tag + + + Hashtable[] + + Hashtable[] + + + none + + + VpnType + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + New-AzureVirtualNetworkSubnetConfig + + Creates a virtual network subnet configuration. + + + + + New + AzureVirtualNetworkSubnetConfig + + + + The New-AzureVirtualNetworkSubnetConfig cmdlet creates a virtual network subnet configuration. + + + + New-AzureVirtualNetworkSubnetConfig + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. + + PSNetworkSecurityGroup + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + RouteTable + + + + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + + Name + + Specifies the name of the subnet configuration to create. + + String + + + + New-AzureVirtualNetworkSubnetConfig + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + RouteTableId + + + + + System.String + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + + Name + + Specifies the name of the subnet configuration to create. + + String + + + + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + String + + + none + + + Name + + Specifies the name of the subnet configuration to create. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + + + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + none + + + RouteTableId + + + + + System.String + + System.String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureVirtualNetworkSubnetConfig + + + + Get-AzureVirtualNetworkSubnetConfig + + + + Remove-AzureVirtualNetworkSubnetConfig + + + + Set-AzureVirtualNetworkSubnetConfig + + + + + + + New-AzureVirtualNetwork + + Creates a virtual network. + + + + + New + AzureVirtualNetwork + + + + The New-AzureVirtualNetwork cmdlet creates an Azure virtual network. + + + + New-AzureVirtualNetwork + + AddressPrefix + + Specifies a range of IP addresses for a virtual network. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + DnsServer + + Specifies the DNS server for a subnet. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Force + + Forces the command to run without asking for user confirmation. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Subnet + + Specifies a list of subnets to associate with the virtual network. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + Tag + + Specifies a dictionary of tags to associate with the network interface. + + Hashtable[] + + + Location + + Specifies the region for the virtual network. + + String + + + Name + + Specifies the name of the virtual network to create. + + String + + + ResourceGroupName + + Specifies the name of a resource group to contain the virtual network. + + String + + + + + + AddressPrefix + + Specifies a range of IP addresses for a virtual network. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + DnsServer + + Specifies the DNS server for a subnet. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Location + + Specifies the region for the virtual network. + + String + + String + + + none + + + Name + + Specifies the name of the virtual network to create. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of a resource group to contain the virtual network. + + String + + String + + + none + + + Subnet + + Specifies a list of subnets to associate with the virtual network. + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + 0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] + + + none + + + Tag + + Specifies a dictionary of tags to associate with the network interface. + + Hashtable[] + + Hashtable[] + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetwork + + + + Remove-AzureVirtualNetwork + + + + Set-AzureVirtualNetwork + + + + + + + Remove-AzureApplicationGatewayBackendAddressPool + + Removes a back-end address pool from an application gateway. + + + + + Remove + AzureApplicationGatewayBackendAddressPool + + + + The Remove-AzureApplicationGatewayBackendAddressPool cmdlet removes a back-end address pool from an Azure application gateway. + + + + Remove-AzureApplicationGatewayBackendAddressPool + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which this cmdlet removes a back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end address pool that this cmdlet removes. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which this cmdlet removes a back-end address pool. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the back-end address pool that this cmdlet removes. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove a back-end address pool from an application gateway + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $AppGw -Name "BackEndPool02" + + + The first command gets the application gateway named ApplicationGateway01 belonging to the resource group named ResourceGroup01 and saves it in the $AppGw variable. The second command removes the back-end address pool named BackEndPool02 from the application gateway. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendAddressPool + + + + Get-AzureApplicationGatewayBackendAddressPool + + + + New-AzureApplicationGatewayBackendAddressPool + + + + Set-AzureApplicationGatewayBackendAddressPool + + + + + + + Remove-AzureApplicationGatewayBackendHttpSettings + + Removes back-end HTTP settings from an application gateway. + + + + + Remove + AzureApplicationGatewayBackendHttpSettings + + + + The Remove-AzureApplicationGatewayBackendHttpSettings cmdlet removes back-end Hypertext Transfer Protocol (HTTP) settings from an Azure application gateway. + + + + Remove-AzureApplicationGatewayBackendHttpSettings + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which this cmdlet removes back-end HTTP settings. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end HTTP settings that this cmdlet removes. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which this cmdlet removes back-end HTTP settings. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the back-end HTTP settings that this cmdlet removes. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove back-end HTTP settings from an application gateway + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw -Name "BackEndSetting02" + + + The first command gets an application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command removes the back-end HTTP setting named BackEndSetting02 from the application gateway stored in $AppGw. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendHttpSettings + + + + New-AzureApplicationGatewayBackendHttpSettings + + + + Get-AzureApplicationGatewayBackendHttpSettings + + + + Set-AzureApplicationGatewayBackendHttpSettings + + + + + + + Remove-AzureApplicationGatewayFrontendIPConfig + + Removes a front-end IP configuration from an application gateway. + + + + + Remove + AzureApplicationGatewayFrontendIPConfig + + + + The Remove-AzureApplicationGatewayFrontendIPConfig cmdlet removes frontend IP from an Azure application gateway. + + + + Remove-AzureApplicationGatewayFrontendIPConfig + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies an application gateway from which to remove a front-end IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of a front-end IP configuration to remove. + + String + + + + + + ApplicationGateway + + Specifies an application gateway from which to remove a front-end IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of a front-end IP configuration to remove. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove a front-end IP configuration + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontEndIP02" + + + The first command gets an application gateway named ApplicationGateway01 and stores it in the $AppGw variable. + The second command removes the front-end IP configuration named FrontEndIP02 from the application gateway stored in $AppGw. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendIPConfig + + + + Get-AzureApplicationGatewayFrontendIPConfig + + + + New-AzureApplicationGatewayFrontendIPConfig + + + + Set-AzureApplicationGatewayFrontendIPConfig + + + + + + + Remove-AzureApplicationGatewayFrontendPort + + Removes a front-end port from an application gateway. + + + + + Remove + AzureApplicationGatewayFrontendPort + + + + The Remove-AzureApplicationGatewayFrontendPort cmdlet removes a front-end port from an Azure application gateway. + + + + Remove-AzureApplicationGatewayFrontendPort + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which to remove a front-end port. + + PSApplicationGateway + + + Name + + Specifies name of the frontend port to remove. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which to remove a front-end port. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies name of the frontend port to remove. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example: Remove a front-end port from an application gateway + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayFrontendPort -ApplicationGateway $ AppGw -Name "FrontEndPort02" + + + The first command gets an application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores the gateway in $AppGw variable. + The second command removes the port named FrontEndPort02 from the application gateway. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendPort + + + + Get-AzureApplicationGatewayFrontendPort + + + + New-AzureApplicationGatewayFrontendPort + + + + Set-AzureApplicationGatewayFrontendPort + + + + + + + Remove-AzureApplicationGatewayHttpListener + + Removes an HTTP listener from an application gateway. + + + + + Remove + AzureApplicationGatewayHttpListener + + + + The Remove-AzureApplicationGatewayHttpListener cmdlet removes an HTTP listener from an Azureapplication gateway. + + + + Remove-AzureApplicationGatewayHttpListener + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which to remove an HTTP listener. + + PSApplicationGateway + + + Name + + Specifies the name of the HTTP listener to remove. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which to remove an HTTP listener. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the HTTP listener to remove. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayHttpListener -ApplicationGateway $AppGw -Name "Listener02" + + + The first command gets an application gateway and stores it in the $AppGw variable. + The second command removes the HTTP listener named Listener02 from the application gateway stored in $AppGw. + + + + + + + + + + + + + Add-AzureApplicationGatewayHttpListener + + + + Get-AzureApplicationGatewayHttpListener + + + + New-AzureApplicationGatewayHttpListener + + + + Set-AzureApplicationGatewayHttpListener + + + + + + + Remove-AzureApplicationGatewayIPConfiguration + + Removes an IP configuration from an application gateway. + + + + + Remove + AzureApplicationGatewayIPConfiguration + + + + The Remove-AzureApplicationGatewayIPConfiguration cmdlet removes an IP configuration from an Azure application gateway. + + + + Remove-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which to remove an IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the IP configuration to remove. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which to remove an IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the IP configuration to remove. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove an IP configuration from an azure_2 application gateway. + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayIPConfiguration -ApplicationGateway $AppGw -Name "Subnet02" + + + The first command gets an application gateway and stores it in the $AppGw variable. + The second command removes the IP configuration named Subnet02 from the application gateway stored in $AppGw. + + + + + + + + + + + + + Add-AzureApplicationGatewayIPConfiguration + + + + Get-AzureApplicationGatewayIPConfiguration + + + + New-AzureApplicationGatewayIPConfiguration + + + + Set-AzureApplicationGatewayIPConfiguration + + + + + + + Remove-AzureApplicationGatewayRequestRoutingRule + + Removes a request routing rule from an application gateway. + + + + + Remove + AzureApplicationGatewayRequestRoutingRule + + + + The Remove-AzureApplicationGatewayRequestRoutingRule cmdlet removes a request routing rule from an Azure application gateway. + + + + Remove-AzureApplicationGatewayRequestRoutingRule + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which to remove a request routing rule. + + PSApplicationGateway + + + Name + + Specifies the name of the request routing rule to remove. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which to remove a request routing rule. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the request routing rule to remove. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove a request routing rule from an application gateway + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewayRequestRoutingRule -ApplicationGateway $AppGw -Name "Rule02" + + + The first command gets an application gateway and stores it in the $AppGw variable. + The second command removes the request routing rule named Rule02 from the application gateway stored in $AppGw. + + + + + + + + + + + + + Add-AzureApplicationGatewayRequestRoutingRule + + + + Get-AzureApplicationGatewayRequestRoutingRule + + + + New-AzureApplicationGatewayRequestRoutingRule + + + + Set-AzureApplicationGatewayRequestRoutingRule + + + + + + + Remove-AzureApplicationGatewaySslCertificate + + Removes an SSL certificate from an Azure application gateway. + + + + + Remove + AzureApplicationGatewaySslCertificate + + + + The Remove-AzureApplicationGatewaySslCertificate cmdlet removes a Secure Sockets Layer (SSL) certificate from an Azure application gateway. + + + + Remove-AzureApplicationGatewaySslCertificate + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway from which this cmdlet removes an SSL certificate. + + PSApplicationGateway + + + Name + + Specifies the name of an SSL certificate that this cmdlet removes. + + String + + + + + + ApplicationGateway + + Specifies the application gateway from which this cmdlet removes an SSL certificate. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of an SSL certificate that this cmdlet removes. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove an SSL certificate from an application gateway + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzureApplicationGatewaySslCertificate -ApplicationGateway $AppGW -Name "Cert02" + + + This command removes the SSL certificate named Cert02 from the application gateway named ApplicationGateway01. + + + + + + + + + + + + + Add-AzureApplicationGatewaySslCertificate + + + + Get-AzureApplicationGatewaySslCertificate + + + + New-AzureApplicationGatewaySslCertificate + + + + Set-AzureApplicationGatewaySslCertificate + + + + + + + Remove-AzureApplicationGateway + + Removes an application gateway. + + + + + Remove + AzureApplicationGateway + + + + The Remove-AzureApplicationGateway cmdlet removes an application gateway. + + + + Remove-AzureApplicationGateway + + Force + + Forces the deletion of the application gateway regardless of whether resources are assigned to it. + + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the application gateway to be removed. + + String + + + ResourceGroupName + + Specifies the name of the resource group name that contains the application gateway. + + String + + + + + + Force + + Forces the deletion of the application gateway regardless of whether resources are assigned to it. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the application gateway to be removed. + + String + + String + + + none + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group name that contains the application gateway. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + System.String + + + + + + + + + + + + + + + Example 1: Remove a specified application gateway + + + + + PS C:\> Remove-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" + + + This command removes the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01. + + + + + + + + + + + + + Set-AzureApplicationGateway + + + + + + + Remove-AzureLoadBalancerBackendAddressPoolConfig + + Removes a backend address pool configuration from a load balancer. + + + + + Remove + AzureLoadBalancerBackendAddressPoolConfig + + + + The Remove-AzureLoadBalancerBackendAddressPoolConfig cmdlet removes a backend address pool from a load balancer. + + + + Remove-AzureLoadBalancerBackendAddressPoolConfig + + Name + + Specifies the name of the backend address pool to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that contains the backend address pool to remove. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that contains the backend address pool to remove. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the backend address pool to remove. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerBackendAddressPoolConfig + + + + Get-AzureLoadBalancerBackendAddressPoolConfig + + + + New-AzureLoadBalancerBackendAddressPoolConfig + + + + + + + Remove-AzureLoadBalancerFrontendIpConfig + + Removes a front-end IP configuration from a load balancer. + + + + + Remove + AzureLoadBalancerFrontendIpConfig + + + + The Remove-AzureLoadBalancerFrontendIpConfig cmdlet removes a front-end IP configuration from an Azure load balancer. + + + + Remove-AzureLoadBalancerFrontendIpConfig + + Name + + Specifies the name of the front-end IP address configuration to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that contains the front-end IP configuration to remove. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that contains the front-end IP configuration to remove. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the front-end IP address configuration to remove. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerFrontendIpConfig + + + + Get-AzureLoadBalancerFrontendIpConfig + + + + New-AzureLoadBalancerFrontendIpConfig + + + + Set-AzureLoadBalancerFrontendIpConfig + + + + + + + Remove-AzureLoadBalancerInboundNatRuleConfig + + Removes an inbound NAT rule configuration from a load balancer. + + + + + Remove + AzureLoadBalancerInboundNatRuleConfig + + + + The Remove-AzureLoadBalancerInboundNatRuleConfig cmdlet removes an inbound network address translation (NAT) rule configuration from an Azure load balancer. + + + + Remove-AzureLoadBalancerInboundNatRuleConfig + + Name + + Specifies the name of the inbound NAT rule configuration to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the LoadBalancer object that contains the inbound NAT rule configuration to remove. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the LoadBalancer object that contains the inbound NAT rule configuration to remove. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the inbound NAT rule configuration to remove. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + + + Get-AzureLoadBalancerInboundNatRuleConfig + + + + New-AzureLoadBalancerInboundNatRuleConfig + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + + + + + + Remove-AzureLoadBalancerProbeConfig + + Removes a probe configuration from a load balancer. + + + + + Remove + AzureLoadBalancerProbeConfig + + + + The Remove-AzureLoadBalancerProbeConfig cmdlet removes a probe configuration from a load balancer. + + + + Remove-AzureLoadBalancerProbeConfig + + Name + + Specifies the name of the probe configuration to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the load balancer that contains the probe configuration to remove. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the load balancer that contains the probe configuration to remove. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the probe configuration to remove. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerProbeConfig + + + + Get-AzureLoadBalancerProbeConfig + + + + New-AzureLoadBalancerProbeConfig + + + + Set-AzureLoadBalancerProbeConfig + + + + + + + Remove-AzureLoadBalancerRuleConfig + + Removes a rule configuration for a load balancer. + + + + + Remove + AzureLoadBalancerRuleConfig + + + + The Remove-AzureLoadBalancerRuleConfig cmdlet removes a rule configuration for an Azure load balancer. + + + + Remove-AzureLoadBalancerRuleConfig + + Name + + Specifies the name of the load balancer rule configuration to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies the LoadBalancer object that contains the rule configuration to remove. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies the LoadBalancer object that contains the rule configuration to remove. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the load balancer rule configuration to remove. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerRuleConfig + + + + Get-AzureLoadBalancerRuleConfig + + + + New-AzureLoadBalancerRuleConfig + + + + Set-AzureLoadBalancerRuleConfig + + + + + + + Remove-AzureLoadBalancer + + Removes a load balancer. + + + + + Remove + AzureLoadBalancer + + + + The Remove-AzureLoadBalancer cmdlet removes an Azure load balancer. + + + + Remove-AzureLoadBalancer + + Force + + Indicates that this cmdlet removes the load balancer regardless of whether resources are assigned to it. + + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Name + + Specifies the name of the load balancer to remove. + + String + + + ResourceGroupName + + Specifies the name of the resource group that contains the load balancer to remove. + + String + + + + + + Force + + Indicates that this cmdlet removes the load balancer regardless of whether resources are assigned to it. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the load balancer to remove. + + String + + String + + + none + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the load balancer to remove. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureLoadBalancer + + + + New-AzureLoadBalancer + + + + Set-AzureLoadBalancer + + + + + + + Remove-AzureLocalNetworkGateway + + + + + + + + Remove + AzureLocalNetworkGateway + + + + + + + Remove-AzureLocalNetworkGateway + + Force + + + + + PassThru + + + + + Profile + + + AzureProfile + + + Name + + + String + + + ResourceGroupName + + + String + + + + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + Name + + + String + + String + + + none + + + PassThru + + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Remove-AzureNetworkInterface + + Removes a network interface. + + + + + Remove + AzureNetworkInterface + + + + The Remove-AzureNetworkInterface cmdlet removes an Azure network interface. + + + + Remove-AzureNetworkInterface + + Force + + Forces the command to run without asking for user confirmation. + + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Name + + Specifies the name of the network interface to remove. + + String + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet removes a network interface from the resource group that this parameter specifies. + + String + + + + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the network interface to remove. + + String + + String + + + none + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet removes a network interface from the resource group that this parameter specifies. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkInterface + + + + New-AzureNetworkInterface + + + + Set-AzureNetworkInterface + + + + + + + Remove-AzureNetworkSecurityGroup + + Removes a network security group. + + + + + Remove + AzureNetworkSecurityGroup + + + + The Remove-AzureNetworkSecurityGroup cmdlet removes an Azure network security group. + + + + Remove-AzureNetworkSecurityGroup + + Force + + Forces the command to run without asking for user confirmation. + + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Name + + Specifies the name of the network security group to remove. + + String + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet removes a network security group from the resource group that this parameter specifies. + + String + + + + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the network security group to remove. + + String + + String + + + none + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of a resource group. This cmdlet removes a network security group from the resource group that this parameter specifies. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkSecurityGroup + + + + New-AzureNetworkSecurityGroup + + + + Set-AzureNetworkSecurityGroup + + + + + + + Remove-AzureNetworkSecurityRuleConfig + + Removes a network security rule from a network security group. + + + + + Remove + AzureNetworkSecurityRuleConfig + + + + The Remove-AzureNetworkSecurityRuleConfig cmdlet removes a network security rule configuration from an Azure network security group. + + + + Remove-AzureNetworkSecurityRuleConfig + + Name + + Specifies the name of the network security rule configuration to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. This object contains the network security rule configuration to remove. + + PSNetworkSecurityGroup + + + + + + Name + + Specifies the name of the network security rule configuration to remove. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. This object contains the network security rule configuration to remove. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureNetworkSecurityRuleConfig + + + + Get-AzureNetworkSecurityRuleConfig + + + + New-AzureNetworkSecurityRuleConfig + + + + Set-AzureNetworkSecurityRuleConfig + + + + + + + Remove-AzurePublicIpAddress + + Removes a public IP address. + + + + + Remove + AzurePublicIpAddress + + + + The Remove-AzurePublicIpAddress cmdlet removes an Azure public IP address. + + + + Remove-AzurePublicIpAddress + + Force + + Forces the command to run without asking for user confirmation. + + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Name + + Specifies the name of the public IP address to remove. + + String + + + ResourceGroupName + + Specifies the name of the resource group that contains the public IP address to remove. + + String + + + + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the public IP address to remove. + + String + + String + + + none + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the public IP address to remove. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzurePublicIpAddress + + + + New-AzurePublicIpAddress + + + + Set-AzurePublicIpAddress + + + + + + + Remove-AzureRouteConfig + + Removes a route from a route table. + + + + + Remove + AzureRouteConfig + + + + The Remove-AzureRouteConfig cmdlet removes a route from an Azure route table. + + + + Remove-AzureRouteConfig + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the route that this cmdlet removes. + + String + + + RouteTable + + Specifies the route table that contains the route that this cmdlet deletes. + + PSRouteTable + + + + + + Name + + Specifies the name of the route that this cmdlet removes. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + Specifies the route table that contains the route that this cmdlet deletes. + + PSRouteTable + + PSRouteTable + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove a route + + + + + PS C:\>Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" | Remove-AzureRouteConfig -Name "route02" | Set-AzureRouteTable +Name : routetable01 +ResourceGroupName : ResourceGroup11 +Location : eastus +Id : /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Microsoft.Networ + k/routeTables/routetable01 +Etag : W/"47099b62-60ec-4bc1-b87b-fad56cb8bed1" +ProvisioningState : Succeeded +Tags : +Routes : [ + { + "Name": "route07", + "Etag": "W/\"47099b62-60ec-4bc1-b87b-fad56cb8bed1\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route07", + "AddressPrefix": "10.1.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + } + ] +Subnets : [] + + + This command gets the route table named routetable01 by using the Get-AzureRouteTable cmdlet. The command passes that table to the current cmdlet by using the pipeline operator. + The current cmdlet remove the route named route02, and the passes the result to the Set-AzureRouteTable cmdlet, which updates the table to reflect your changes. The table no longer contains the route named route02. + + + + + + + + + + + + + Add-AzureRouteConfig + + + + Get-AzureRouteConfig + + + + New-AzureRouteConfig + + + + Set-AzureRouteConfig + + + + + + + Remove-AzureRouteTable + + Removes a route table. + + + + + Remove + AzureRouteTable + + + + The Remove-AzureRouteTable cmdlet removes an Azure route table. + + + + Remove-AzureRouteTable + + Force + + Forces the command to run without asking for user confirmation. + + + + PassThru + + Indicates that this cmdlet returns a value of $True if it removes a route table, or $False if it fails. If you do not specify this parameter, this cmdlet returns no value. + + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the route table that this cmdlet removes. + + String + + + ResourceGroupName + + Specifies the name of the resource group that contains the route table that this cmdlet removes. + + String + + + + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the route table that this cmdlet removes. + + String + + String + + + none + + + PassThru + + Indicates that this cmdlet returns a value of $True if it removes a route table, or $False if it fails. If you do not specify this parameter, this cmdlet returns no value. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the route table that this cmdlet removes. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Remove a route table + + + + + PS C:\>Remove-AzureRouteTable -ResourceGroupName "ResourceGroup11 -Name "routetable01" +Confirm +Are you sure you want to remove resource 'routetable01' +[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): y + + + This command removes the route table named routetable01 in the resource group named ResourceGroup11. The cmdlet prompts you for confirmation before it removes the table. + + + + + + + + + + + + + Get-AzureRouteTable + + + + New-AzureRouteTable + + + + Set-AzureRouteTable + + + + + + + Remove-AzureVirtualNetworkGatewayConnection + + + + + + + + Remove + AzureVirtualNetworkGatewayConnection + + + + + + + Remove-AzureVirtualNetworkGatewayConnection + + Force + + + + + PassThru + + + + + Profile + + + AzureProfile + + + Name + + + String + + + ResourceGroupName + + + String + + + + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + Name + + + String + + String + + + none + + + PassThru + + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Remove-AzureVirtualNetworkGateway + + + + + + + + Remove + AzureVirtualNetworkGateway + + + + + + + Remove-AzureVirtualNetworkGateway + + Force + + + + + PassThru + + + + + Profile + + + AzureProfile + + + Name + + + String + + + ResourceGroupName + + + String + + + + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + Name + + + String + + String + + + none + + + PassThru + + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Remove-AzureVirtualNetworkSubnetConfig + + Removes a subnet configuration from a virtual network. + + + + + Remove + AzureVirtualNetworkSubnetConfig + + + + The Remove-AzureVirtualNetworkSubnetConfig cmdlet removes a subnet from an Azure virtual network. + + + + Remove-AzureVirtualNetworkSubnetConfig + + Name + + Specifies the name of the subnet configuration to remove. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration to remove. + + PSVirtualNetwork + + + + + + Name + + Specifies the name of the subnet configuration to remove. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration to remove. + + PSVirtualNetwork + + PSVirtualNetwork + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureVirtualNetworkSubnetConfig + + + + Get-AzureVirtualNetworkSubnetConfig + + + + New-AzureVirtualNetworkSubnetConfig + + + + Set-AzureVirtualNetworkSubnetConfig + + + + + + + Remove-AzureVirtualNetwork + + Removes a virtual network. + + + + + Remove + AzureVirtualNetwork + + + + The Remove-AzureVirtualNetwork cmdlet removes an Azure virtual network. + + + + Remove-AzureVirtualNetwork + + Force + + Forces the command to run without asking for user confirmation. + + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Name + + Specifies the name of the virtual network to remove. + + String + + + ResourceGroupName + + Specifies the name of the resource group that contains the virtual network to remove. + + String + + + + + + Force + + Forces the command to run without asking for user confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + Name + + Specifies the name of the virtual network to remove. + + String + + String + + + none + + + PassThru + + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + Specifies the name of the resource group that contains the virtual network to remove. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetwork + + + + New-AzureVirtualNetwork + + + + Set-AzureVirtualNetwork + + + + + + + Reset-AzureVirtualNetworkGatewayConnectionSharedKey + + + + + + + + Reset + AzureVirtualNetworkGatewayConnectionSharedKey + + + + + + + Reset-AzureVirtualNetworkGatewayConnectionSharedKey + + Force + + + + + Profile + + + AzureProfile + + + KeyLength + + + UInt32 + + + Name + + + String + + + ResourceGroupName + + + String + + + + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + KeyLength + + + UInt32 + + UInt32 + + + none + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Reset-AzureVirtualNetworkGateway + + + + + + + + Reset + AzureVirtualNetworkGateway + + + + + + + Reset-AzureVirtualNetworkGateway + + Profile + + + AzureProfile + + + VirtualNetworkGateway + + + PSVirtualNetworkGateway + + + + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + VirtualNetworkGateway + + + PSVirtualNetworkGateway + + PSVirtualNetworkGateway + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Set-AzureApplicationGatewayBackendAddressPool + + Updates a back-end address pool for an application gateway. + + + + + Set + AzureApplicationGatewayBackendAddressPool + + + + The Set-AzureApplicationGatewayBackendAddressPool cmdlet updates a back-end address pool for an Azure application gateway. Back-end addresses can be specified as IP addresses, fully-qualified domain names (FQDN) or IP configurations IDs. + + + + Set-AzureApplicationGatewayBackendAddressPool + + BackendIPConfigurationIds + + Specifies a list of back-end IP configuration IDs to use for the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end address pool. This back-end address pool must exist in the application gateway. + + String + + + + Set-AzureApplicationGatewayBackendAddressPool + + BackendIPAddresses + + Specifies a list of back-end IP addresses to use as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end address pool. This back-end address pool must exist in the application gateway. + + String + + + + Set-AzureApplicationGatewayBackendAddressPool + + BackendFqdns + + Specifies a list of back-end FQDNs to use as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the back-end address pool. + + PSApplicationGateway + + + Name + + Specifies the name of the back-end address pool. This back-end address pool must exist in the application gateway. + + String + + + + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the back-end address pool. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + BackendFqdns + + Specifies a list of back-end FQDNs to use as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + BackendIPAddresses + + Specifies a list of back-end IP addresses to use as a back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + BackendIPConfigurationIds + + Specifies a list of back-end IP configuration IDs to use for the back-end server pool. + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + Name + + Specifies the name of the back-end address pool. This back-end address pool must exist in the application gateway. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Setting a back-end address pool by using FQDNs + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $ AppGw +-Name "Pool02" -BackendFqdns "contoso1.com", "contoso2.com" + + + + The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command updates the back-end address pool of the application gateway in $AppGw by using FQDNs. + + + + + + + + + + + Example 2: Setting a back-end address pool by using backend server IP addresses + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $ AppGw +-Name "Pool02" -BackendIPAddresses "10.10.10.10", "10.10.10.11" + + + The second command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command updates the back-end address pool of the application gateway in $AppGw by using IP addresses. + + + + + + + + + + + Example 3: Setting a back-end address pool by using the ID of the backend server’s IP address + + + + + PS C:\>$Nic01 = Get-AzureNetworkInterface -Name "Nic01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Nic02 = Get-AzureNetworkInterface -Name "Nic02" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayBackendAddressPool -ApplicationGateway $ AppGw +-Name "Pool02" -BackendIPConfigurationIds $nic01.Properties.IpConfigurations[0].Id, $nic02.Properties.IpConfiguration[0].Id + + + The first command gets a network interface object named Nic01 that belongs to the resource group named ResourceGroup01, and stores it in the $Nic01 variable. + The second command gets a network interface object named Nic02 that belongs to the resource group named ResourceGroup02, and stores it in the $Nic02 variable. + The third command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The forth command uses the back-end IP configuration IDs from $Nic01 and $Nic02 to update the back-end address pool of the application gateway in $AppGw. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendAddressPool + + + + Get-AzureApplicationGatewayBackendAddressPool + + + + Get-AzureNetworkInterface + + + + New-AzureApplicationGatewayBackendAddressPool + + + + Remove-AzureApplicationGatewayBackendAddressPool + + + + + + + Set-AzureApplicationGatewayBackendHttpSettings + + Updates back-end HTTP settings for an application gateway. + + + + + Set + AzureApplicationGatewayBackendHttpSettings + + + + The Set-AzureApplicationGatewayBackendHttpSettings cmdlet updates the back-end Hypertext Transfer Protocol (HTTP) settings for an Azure application gateway. Back-end HTTP settings are applied to all back-end servers in a pool. + + + + Set-AzureApplicationGatewayBackendHttpSettings + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies an application gateway object with which this cmdlet associates back-end HTTP settings. + + PSApplicationGateway + + + CookieBasedAffinity + + Specifies whether cookie-based affinity should be enabled or disabled for the backend server pool. The acceptable values for this parameter are: Disabled, Enabled. + + + Enabled + Disabled + + + + Name + + Specifies the name of the back-end HTTP settings object. + + String + + + Port + + Specifies the port to use for each server in the back-end server pool. + + Int32 + + + Protocol + + Specifies the protocol to use for communication between the application gateway and back-end servers. The acceptable values for this parameter are: Http. This parameter is case-sensitive. + + String + + + + + + ApplicationGateway + + Specifies an application gateway object with which this cmdlet associates back-end HTTP settings. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + CookieBasedAffinity + + Specifies whether cookie-based affinity should be enabled or disabled for the backend server pool. The acceptable values for this parameter are: Disabled, Enabled. + + String + + String + + + none + + + Name + + Specifies the name of the back-end HTTP settings object. + + String + + String + + + none + + + Port + + Specifies the port to use for each server in the back-end server pool. + + Int32 + + Int32 + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol to use for communication between the application gateway and back-end servers. The acceptable values for this parameter are: Http. This parameter is case-sensitive. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Update the back-end HTTP settings for an application gateway + + + + + PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw +-Name "Setting02" -Port 88 -Protocol "Http" -CookieBasedAffinity "Disabled" + + + + The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command updates the HTTP settings of the application gateway in $AppGw to use port 88, the HTTP protocol and enables cookie-based affinity. + + + + + + + + + + + + + Add-AzureApplicationGatewayBackendHttpSettings + + + + Get-AzureApplicationGatewayBackendHttpSettings + + + + New-AzureApplicationGatewayBackendHttpSettings + + + + Remove-AzureApplicationGatewayBackendHttpSettings + + + + + + + Set-AzureApplicationGatewayFrontendIPConfig + + Modifies a front-end IP address configuration. + + + + + Set + AzureApplicationGatewayFrontendIPConfig + + + + The Set-AzureApplicationGatewayFrontendIPConfig cmdlet updates a front-end IP configuration. + An application gateway supports two types of front-end IP addresses: +-- Public IP addresses +-- Private IP addresses for which the configuration uses Internal Load Balancing (ILB) + An application gateway can have at most one public IP address and one private IP address. A public IP address and a private IP address should be added separately as front-end IP addresses. + + + + Set-AzureApplicationGatewayFrontendIPConfig + + PrivateIPAddress + + Specifies the private IP address. If specified, this IP is statically allocated from the subnet. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + PublicIPAddress + + Specifies the public IP address. + + PSPublicIpAddress + + + Subnet + + Specifies the subnet that the application gateway uses. Specify this parameter if the gateway uses a private IP address. If PrivateIPAddress is specified, it should belong to this subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the fron-tend IP address of the application gateway. + + PSSubnet + + + ApplicationGateway + + Specifies an application gateway object in which to modify the front-end IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end IP configuration to modify. + + String + + + + Set-AzureApplicationGatewayFrontendIPConfig + + PrivateIPAddress + + Specifies the private IP address. If specified, this IP is statically allocated from the subnet. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + PublicIPAddressId + + Specifies the ID of the public IP address. + + String + + + SubnetId + + Specifies the subnet ID. Specify this parameter if the gateway uses a private IP address. If PrivateIPAddress is specified, it should belong to this subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + String + + + ApplicationGateway + + Specifies an application gateway object in which to modify the front-end IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end IP configuration to modify. + + String + + + + + + ApplicationGateway + + Specifies an application gateway object in which to modify the front-end IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the front-end IP configuration to modify. + + String + + String + + + none + + + PrivateIPAddress + + Specifies the private IP address. If specified, this IP is statically allocated from the subnet. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIPAddress + + Specifies the public IP address. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIPAddressId + + Specifies the ID of the public IP address. + + String + + String + + + none + + + Subnet + + Specifies the subnet that the application gateway uses. Specify this parameter if the gateway uses a private IP address. If PrivateIPAddress is specified, it should belong to this subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the fron-tend IP address of the application gateway. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the subnet ID. Specify this parameter if the gateway uses a private IP address. If PrivateIPAddress is specified, it should belong to this subnet. If PrivateIPAddress is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSSubnet + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Set a public IP as front-end IP of an application gateway + + + + + PS C:\> $PublicIp = New-AzurePublicIpAddress -ResourceGroupName "ResourceGroup01" -Name "PublicIp01" -location "West US" -AllocationMethod Dynamic +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontEndIp01" –PublicIPAddress $PublicIp + + + + The first command creates a public IP address object and stores it in the $PublicIp variable. + The second command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The third command updates the front-end IP configuration named FrontEndIp01, for the gateway in $AppGw, using the address stored in $PublicIp. + + + + + + + + + + + Example 2: Set a static private IP as the front-end IP of an application gateway + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontendIP02" -Subnet $Subnet -PrivateIPAddress 10.0.1.1 + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01, and stores it in the $VNet variable. + The second command gets a subnet configuration named Subnet01 using $VNet from the first command and stores it in the $Subnet variable. + The third command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The fourth command adds a front-end IP configuration named FrontendIP02 using $Subnet from the second command and the private IP address 10.0.1.1. + + + + + + + + + + + 1: Set a dynamic private IP as the front-end IP of an application gateway + + + + + PS C:\>$VNet = Get-AzurevirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontendIP02" -Subnet $Subnet + + + The first command gets a virtual network named VNet01 that belongs to the resource group named ResourceGroup01, and stores it in the $VNet variable. + The second command gets a subnet configuration named Subnet01 using $VNet from the first command and stores it in the $Subnet variable. + The third command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The fourth command adds a front-end IP configuration named FrontendIP02 using $Subnet from the second command. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendIPConfig + + + + Get-AzureApplicationGatewayFrontendIPConfig + + + + New-AzureApplicationGatewayFrontendIPConfig + + + + Remove-AzureApplicationGatewayFrontendIPConfig + + + + + + + Set-AzureApplicationGatewayFrontendPort + + Modifies a front-end port for an application gateway. + + + + + Set + AzureApplicationGatewayFrontendPort + + + + The Set-AzureApplicationGatewayFrontendPort cmdlet modifies a front-end port for an application gateway. + + + + Set-AzureApplicationGatewayFrontendPort + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates the front-end port. + + PSApplicationGateway + + + Name + + Specifies the name of the front-end port to modify. + + String + + + Port + + Specifies the port number to use for the front-end port. + + Int32 + + + + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates the front-end port. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the front-end port to modify. + + String + + String + + + none + + + Port + + Specifies the port number to use for the front-end port. + + Int32 + + Int32 + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +C:\> $ AppGw = Set-AzureApplicationGatewayFrontendPort -ApplicationGateway $ AppGw -Name “FrontEndPort01” –Port 80 + + + + The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command modifies the gateway in $AppGw to use port 80 for the front-end port named FrontEndPort01. + + + + + + + + + + + + + Add-AzureApplicationGatewayFrontendPort + + + + Get-AzureApplicationGatewayFrontendPort + + + + New-AzureApplicationGatewayFrontendPort + + + + Remove-AzureApplicationGatewayFrontendPort + + + + + + + Set-AzureApplicationGatewayHttpListener + + Modifies an HTTP listener for an application gateway. + + + + + Set + AzureApplicationGatewayHttpListener + + + + The Set-AzureApplicationGatewayHttpListener cmdlet modifies an HTTP listener for an Azure application gateway. + + + + Set-AzureApplicationGatewayHttpListener + + FrontendIPConfigurationId + + Specifies the ID of the front-end IP address of the application gateway. + + String + + + FrontendPortId + + Specifies the application gateway front-end port ID. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificateId + + Specifies the SSL certificate ID of the HTTP listener. + + String + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the HTTP listener. + + PSApplicationGateway + + + Name + + Specifies the name of the HTTP listener. + + String + + + Protocol + + Specifies the protocol that the HTTP listener uses. + + + Http + Https + + + + + Set-AzureApplicationGatewayHttpListener + + FrontendIPConfiguration + + Specifies the front-end IP address of the application gateway. + + PSApplicationGatewayFrontendIPConfiguration + + + FrontendPort + + Specifies the application gateway front-end port. + + PSApplicationGatewayFrontendPort + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SslCertificate + + Specifies the SSL certificate of the HTTP listener. + + PSApplicationGatewaySslCertificate + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the HTTP listener. + + PSApplicationGateway + + + Name + + Specifies the name of the HTTP listener. + + String + + + Protocol + + Specifies the protocol that the HTTP listener uses. + + + Http + Https + + + + + + + ApplicationGateway + + Specifies the application gateway with which this cmdlet associates the HTTP listener. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + FrontendIPConfiguration + + Specifies the front-end IP address of the application gateway. + + PSApplicationGatewayFrontendIPConfiguration + + PSApplicationGatewayFrontendIPConfiguration + + + none + + + FrontendIPConfigurationId + + Specifies the ID of the front-end IP address of the application gateway. + + String + + String + + + none + + + FrontendPort + + Specifies the application gateway front-end port. + + PSApplicationGatewayFrontendPort + + PSApplicationGatewayFrontendPort + + + none + + + FrontendPortId + + Specifies the application gateway front-end port ID. + + String + + String + + + none + + + Name + + Specifies the name of the HTTP listener. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol that the HTTP listener uses. + + String + + String + + + none + + + SslCertificate + + Specifies the SSL certificate of the HTTP listener. + + PSApplicationGatewaySslCertificate + + PSApplicationGatewaySslCertificate + + + none + + + SslCertificateId + + Specifies the SSL certificate ID of the HTTP listener. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Set an HTTP listener + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayHttpListener -ApplicationGateway $AppGw -Name "Listener01" -Protocol Http -FrontendIpConfiguration $FIP01 -FrontendPort 80 + + + The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The second command sets the HTTP listener for the gateway to use the front-end configuration stored in $FIP01 with the HTTP protocol on port 80. + + + + + + + + + + + + + Add-AzureApplicationGatewayHttpListener + + + + Get-AzureApplicationGatewayHttpListener + + + + New-AzureApplicationGatewayHttpListener + + + + Remove-AzureApplicationGatewayHttpListener + + + + + + + Set-AzureApplicationGatewayIPConfiguration + + Modifies an IP configuration for an application gateway. + + + + + Set + AzureApplicationGatewayIPConfiguration + + + + The Set-AzureApplicationGatewayIPConfiguration cmdlet modifies an IP configuration. An IP configuration contains the subnet in which an application gateway is deployed. + + + + Set-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + SubnetId + + Specifies the subnet ID. This is the subnet in which the application gateway is deployed. + + String + + + ApplicationGateway + + Specifies an application gateway object with which this cmdlet associates an IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the IP configuration. + + String + + + + Set-AzureApplicationGatewayIPConfiguration + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Subnet + + Specifies the subnet. This is the subnet in which the application gateway is deployed. + + PSSubnet + + + ApplicationGateway + + Specifies an application gateway object with which this cmdlet associates an IP configuration. + + PSApplicationGateway + + + Name + + Specifies the name of the IP configuration. + + String + + + + + + ApplicationGateway + + Specifies an application gateway object with which this cmdlet associates an IP configuration. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Name + + Specifies the name of the IP configuration. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Subnet + + Specifies the subnet. This is the subnet in which the application gateway is deployed. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the subnet ID. This is the subnet in which the application gateway is deployed. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSSubnet + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Set the goal state of an IP configuration + + + + + PS C:\>$VNet = Get-AzureVirtualNetwork -Name "VNet01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Subnet = Get-AzureVirtualNetworkSubnetConfig -Name "Subnet01" -VirtualNetwork $VNet +PS C:\> $AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayIPConfiguration -ApplicationGateway $AppGw +-Name "AppgwSubnet01" -Subnet $Subnets + + + The first command gets the virtual network named VNet01 that belongs to the resource group named ResourceGroup01 and stores it in the $VNet variable. + The second command gets the subnet configuration named Subnet01 using $VNet and stores it in the $Subnet variable. + The third command gets an application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. + The forth command sets the IP configuration of the application gateway stored in $AppGw to the subnet configuration stored in $Subnet. + + + + + + + + + + + + + Add-AzureApplicationGatewayIPConfiguration + + + + Get-AzureApplicationGatewayIPConfiguration + + + + New-AzureApplicationGatewayIPConfiguration + + + + Remove-AzureApplicationGatewayIPConfiguration + + + + + + + Set-AzureApplicationGatewayRequestRoutingRule + + Modifies a request routing rule for an application gateway. + + + + + Set + AzureApplicationGatewayRequestRoutingRule + + + + The Set-AzureApplicationGatewayRequestRoutingRule cmdlet modifies a request routing rule. + + + + Set-AzureApplicationGatewayRequestRoutingRule + + BackendAddressPoolId + + Specifies the application gateway back-end address pool ID. + + String + + + BackendHttpSettingsId + + Specifies the application gateway back-end HTTP settings ID. + + String + + + HttpListenerId + + Specifies the application gateway HTTP listener ID. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates a request routing rule. + + PSApplicationGateway + + + Name + + Specifies the name of the request routing rule that this cmdlet modifies. + + String + + + RuleType + + Specifies the type of request routing rule. + + String + + + + Set-AzureApplicationGatewayRequestRoutingRule + + BackendAddressPool + + Specifies the application gateway back-end address pool. + + PSApplicationGatewayBackendAddressPool + + + BackendHttpSettings + + Specifies the application gateway backend HTTP settings. + + PSApplicationGatewayBackendHttpSettings + + + HttpListener + + Specifies the application gateway HTTP listener. + + PSApplicationGatewayHttpListener + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates a request routing rule. + + PSApplicationGateway + + + Name + + Specifies the name of the request routing rule that this cmdlet modifies. + + String + + + RuleType + + Specifies the type of request routing rule. + + String + + + + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates a request routing rule. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + BackendAddressPool + + Specifies the application gateway back-end address pool. + + PSApplicationGatewayBackendAddressPool + + PSApplicationGatewayBackendAddressPool + + + none + + + BackendAddressPoolId + + Specifies the application gateway back-end address pool ID. + + String + + String + + + none + + + BackendHttpSettings + + Specifies the application gateway backend HTTP settings. + + PSApplicationGatewayBackendHttpSettings + + PSApplicationGatewayBackendHttpSettings + + + none + + + BackendHttpSettingsId + + Specifies the application gateway back-end HTTP settings ID. + + String + + String + + + none + + + HttpListener + + Specifies the application gateway HTTP listener. + + PSApplicationGatewayHttpListener + + PSApplicationGatewayHttpListener + + + none + + + HttpListenerId + + Specifies the application gateway HTTP listener ID. + + String + + String + + + none + + + Name + + Specifies the name of the request routing rule that this cmdlet modifies. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RuleType + + Specifies the type of request routing rule. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Update a request routing rule + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewayRequestRoutingRule -ApplicationGateway $AppGw -Name "Rule01" -RuleType Basic -BackendHttpSettings $Setting -HttpListener $Listener -BackendAddressPool $Pool + + + The first command gets the application gateway named ApplicationGateway01 and stores it in the $AppGw variable. + The second command modifies the request routing rule for the application gateway to use back-end HTTP settings specified in the $Setting variable, an HTTP listener specified in the $Listener variable, and a back-end address pool specified in the $Pool variable. + + + + + + + + + + + + + Add-AzureApplicationGatewayRequestRoutingRule + + + + Get-AzureApplicationGatewayRequestRoutingRule + + + + New-AzureApplicationGatewayRequestRoutingRule + + + + Remove-AzureApplicationGatewayRequestRoutingRule + + + + + + + Set-AzureApplicationGatewaySku + + Modifies the SKU of an application gateway. + + + + + Set + AzureApplicationGatewaySku + + + + The Set-AzureApplicationGatewaySku cmdlet modifies the stock keeping unit (SKU) of an application gateway. + + + + Set-AzureApplicationGatewaySku + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates the SKU. + + PSApplicationGateway + + + Capacity + + Specifies the instance count of the application gateway. + + Int32 + + + Name + + Specifies the name of the application gateway. + + + Standard_Small + Standard_Medium + Standard_Large + + + + Tier + + Specifies the tier of the application gateway. + + String + + + + + + ApplicationGateway + + Specifies the application gateway object with which this cmdlet associates the SKU. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Capacity + + Specifies the instance count of the application gateway. + + Int32 + + Int32 + + + none + + + Name + + Specifies the name of the application gateway. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + Tier + + Specifies the tier of the application gateway. + + String + + String + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Update the application gateway SKU + + + + + PS C:\>$AppGw = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzureApplicationGatewaySku –ApplicationGateway $AppGw -Name "Standard_Small" -Tier "Standard" -Capacity 2 + + + The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. + The second command updates the SKU of the application gateway. + + + + + + + + + + + + + Get-AzureApplicationGatewaySku + + + + New-AzureApplicationGatewaySku + + + + + + + Set-AzureApplicationGatewaySslCertificate + + Sets the goal state of an SSL certificate. + + + + + Set + AzureApplicationGatewaySslCertificate + + + + The Set-AzureApplicationGatewaySslCertificate cmdlet sets the goal state of an SSL certificate. + + + + Set-AzureApplicationGatewaySslCertificate + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway with which the SSL certificate is associated. + + PSApplicationGateway + + + CertificateFile + + Specifies the path of the SSL certificate. + + System.String + + + Name + + Specifies the name of the SSL certificate. + + String + + + Password + + Specifies the password of the SSL certificate. + + String + + + + + + ApplicationGateway + + Specifies the application gateway with which the SSL certificate is associated. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + CertificateFile + + Specifies the path of the SSL certificate. + + System.String + + System.String + + + none + + + Name + + Specifies the name of the SSL certificate. + + String + + String + + + none + + + Password + + Specifies the password of the SSL certificate. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + + + + + + + + + + + + + + + Example 1: Set the goal state of an SSL certificate + + + + + PS C:\>$AppGW = Get-AzureApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $Cert = Set-AzureApplicationGatewaySslCertificate –ApplicationGateway $AppGW -Name "Cert01" –CertificateFile "D:\cert01.pfx" –Password "Password01" + + + This command sets the goal state for an SSL certificate from the application gateway named ApplicationGateway01. + + + + + + + + + + + + + Add-AzureApplicationGatewaySslCertificate + + + + Get-AzureApplicationGatewaySslCertificate + + + + New-AzureApplicationGatewaySslCertificate + + + + Remove-AzureApplicationGatewaySslCertificate + + + + + + + Set-AzureApplicationGateway + + Updates an application gateway. + + + + + Set + AzureApplicationGateway + + + + The Set-AzureApplicationGateway cmdlet updates an Azure application gateway. + + + + Set-AzureApplicationGateway + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies an application gateway object representing the state to which the application gateway should be set. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies an application gateway object representing the state to which the application gateway should be set. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Update an application gateway + + + + + PS C:\> $UpdatedAppGw = Set-AzureApplicationGateway -ApplicationGateway $AppGw + + + This command updates the application gateway with settings in the $AppGw variable and stores the updated gateway in the $UpdatedAppGw variable. + + + + + + + + + + + + + Start-AzureApplicationGateway + + + + + + + Set-AzureLoadBalancerFrontendIpConfig + + Sets the goal state for a front-end IP configuration in a load balancer. + + + + + Set + AzureLoadBalancerFrontendIpConfig + + + + The Set-AzureLoadBalancerFrontendIpConfig cmdlet sets the goal state for a front-end IP configuration in an Azure load balancer. + + + + Set-AzureLoadBalancerFrontendIpConfig + + PrivateIpAddress + + Specifies the private IP address of the load balancer that is associated with the front-end IP configuration to set. Specify this parameter only if you also specify the Subnet parameter. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddressId + + Specifies the ID of the PublicIpAddress object that is associated with the front-end IP configuration to set. + + String + + + SubnetId + + Specifies the ID of the subnet that contains the front-end IP configuration to set. + + String + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for a front-end configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the front-end IP configuration to set. + + String + + + + Set-AzureLoadBalancerFrontendIpConfig + + PrivateIpAddress + + Specifies the private IP address of the load balancer that is associated with the front-end IP configuration to set. Specify this parameter only if you also specify the Subnet parameter. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddress + + Specifies the PublicIpAddress object that is associated with the front-end IP configuration to set. + + PSPublicIpAddress + + + Subnet + + Specifies the Subnet object that contains the front-end IP configuration to set. + + PSSubnet + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for a front-end configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the front-end IP configuration to set. + + String + + + + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for a front-end configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the front-end IP configuration to set. + + String + + String + + + none + + + PrivateIpAddress + + Specifies the private IP address of the load balancer that is associated with the front-end IP configuration to set. Specify this parameter only if you also specify the Subnet parameter. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIpAddress + + Specifies the PublicIpAddress object that is associated with the front-end IP configuration to set. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + PublicIpAddressId + + Specifies the ID of the PublicIpAddress object that is associated with the front-end IP configuration to set. + + String + + String + + + none + + + Subnet + + Specifies the Subnet object that contains the front-end IP configuration to set. + + PSSubnet + + PSSubnet + + + none + + + SubnetId + + Specifies the ID of the subnet that contains the front-end IP configuration to set. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerFrontendIpConfig + + + + Get-AzureLoadBalancerFrontendIpConfig + + + + New-AzureLoadBalancerFrontendIpConfig + + + + Remove-AzureLoadBalancerFrontendIpConfig + + + + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + Sets an inbound NAT rule configuration for a load balancer. + + + + + Set + AzureLoadBalancerInboundNatRuleConfig + + + + The Set-AzureLoadBalancerInboundNatRuleConfig cmdlet sets an inbound network address translation (NAT) rule configuration for an Azure load balancer. + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by an inbound NAT rule configuration. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets an inbound NAT rule configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of an inbound NAT rule configuration. + + String + + + + Set-AzureLoadBalancerInboundNatRuleConfig + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with an inbound NAT rule configuration. + + PSFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by an inbound NAT rule configuration. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets an inbound NAT rule configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of an inbound NAT rule configuration. + + String + + + + + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + Int32 + + + none + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with an inbound NAT rule configuration. + + PSFrontendIPConfiguration + + PSFrontendIPConfiguration + + + none + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + System.String + + + none + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + Int32 + + + none + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, that the state of conversations is maintained in a load balancer. + + Int32 + + Int32 + + + none + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets an inbound NAT rule configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of an inbound NAT rule configuration. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol that is matched by an inbound NAT rule configuration. The acceptable values for this parameter are:Tcp or Udp. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerInboundNatRuleConfig + + + + Get-AzureLoadBalancerInboundNatRuleConfig + + + + New-AzureLoadBalancerInboundNatRuleConfig + + + + Remove-AzureLoadBalancerInboundNatRuleConfig + + + + + + + Set-AzureLoadBalancerProbeConfig + + Sets the goal state for a probe configuration. + + + + + Set + AzureLoadBalancerProbeConfig + + + + The Set-AzureLoadBalancerProbeConfig cmdlet sets the goal state for a probe configuration. + + + + Set-AzureLoadBalancerProbeConfig + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol to use for the probing. The acceptable values for this parameter are:Tcp or Http. + + + Tcp + Http + + + + RequestPath + + Specifies the path in the load-balanced service to probe to determine health. + + String + + + IntervalInSeconds + + Specifies the interval, in seconds, between probes to each instance of the load-balanced service. + + Int32 + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for a probe configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of the probe configuration to set. + + String + + + Port + + Specifies the port on which probes should connect to a load-balanced service. + + Int32 + + + ProbeCount + + Specifies the number of per-instance consecutive failures for an instance to be considered unhealthy. + + Int32 + + + + + + IntervalInSeconds + + Specifies the interval, in seconds, between probes to each instance of the load-balanced service. + + Int32 + + Int32 + + + none + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for a probe configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Name + + Specifies the name of the probe configuration to set. + + String + + String + + + none + + + Port + + Specifies the port on which probes should connect to a load-balanced service. + + Int32 + + Int32 + + + none + + + ProbeCount + + Specifies the number of per-instance consecutive failures for an instance to be considered unhealthy. + + Int32 + + Int32 + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol to use for the probing. The acceptable values for this parameter are:Tcp or Http. + + String + + String + + + none + + + RequestPath + + Specifies the path in the load-balanced service to probe to determine health. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerProbeConfig + + + + Get-AzureLoadBalancerProbeConfig + + + + New-AzureLoadBalancerProbeConfig + + + + Remove-AzureLoadBalancerProbeConfig + + + + + + + Set-AzureLoadBalancerRuleConfig + + Sets the goal state for a load balancer rule configuration. + + + + + Set + AzureLoadBalancerRuleConfig + + + + The Set-AzureLoadBalancerRuleConfig cmdlet sets the goal state for a load balancer rule configuration. + + + + Set-AzureLoadBalancerRuleConfig + + BackendAddressPool + + Specifies a BackendAddressPool object to associate with a load balancer rule. + + PSBackendAddressPool + + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, for which the state of conversations is maintained in a load balancer. + + Int32 + + + LoadDistribution + + Specifies a load distribution. + + + Default + SourceIP + SourceIPProtocol + + + + Probe + + Specifies a probe to associate with a load balancer rule configuration. + + PSProbe + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by a load balancer rule. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state rule configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of a load balancer. + + String + + + + Set-AzureLoadBalancerRuleConfig + + BackendAddressPoolId + + Specifies the ID of a BackendAddressPool object to associate with a load balancer rule configuration. + + String + + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, for which the state of conversations is maintained in a load balancer. + + Int32 + + + LoadDistribution + + Specifies a load distribution. + + + Default + SourceIP + SourceIPProtocol + + + + ProbeId + + Specifies the ID of the probe to associate with a load balancer rule configuration. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + Protocol + + Specifies the protocol that is matched by a load balancer rule. The acceptable values for this parameter are:Tcp or Udp. + + + Tcp + Udp + + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state rule configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + + Name + + Specifies the name of a load balancer. + + String + + + + + + BackendAddressPool + + Specifies a BackendAddressPool object to associate with a load balancer rule. + + PSBackendAddressPool + + PSBackendAddressPool + + + none + + + BackendAddressPoolId + + Specifies the ID of a BackendAddressPool object to associate with a load balancer rule configuration. + + String + + String + + + none + + + BackendPort + + Specifies the backend port for traffic that is matched by this rule configuration. + + Int32 + + Int32 + + + none + + + EnableFloatingIP + + Indicates that this cmdlet enables a floating IP address for a rule configuration. + + SwitchParameter + + SwitchParameter + + + none + + + FrontendIpConfiguration + + Specifies a list of front-end IP addresses to associate with a load balancer rule configuration. + + PSFrontendIPConfiguration + + PSFrontendIPConfiguration + + + none + + + FrontendIpConfigurationId + + Specifies the ID for a front-end IP address configuration. + + System.String + + System.String + + + none + + + FrontendPort + + Specifies the front-end port that is matched by a load balancer rule configuration. + + Int32 + + Int32 + + + none + + + IdleTimeoutInMinutes + + Specifies the length of time, in minutes, for which the state of conversations is maintained in a load balancer. + + Int32 + + Int32 + + + none + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state rule configuration for the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + LoadDistribution + + Specifies a load distribution. + + String + + String + + + none + + + Name + + Specifies the name of a load balancer. + + String + + String + + + none + + + Probe + + Specifies a probe to associate with a load balancer rule configuration. + + PSProbe + + PSProbe + + + none + + + ProbeId + + Specifies the ID of the probe to associate with a load balancer rule configuration. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the protocol that is matched by a load balancer rule. The acceptable values for this parameter are:Tcp or Udp. + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureLoadBalancerRuleConfig + + + + Get-AzureLoadBalancerRuleConfig + + + + New-AzureLoadBalancerRuleConfig + + + + Remove-AzureLoadBalancerRuleConfig + + + + + + + Set-AzureLoadBalancer + + Sets the goal state for a load balancer. + + + + + Set + AzureLoadBalancer + + + + The Set-AzureLoadBalancer cmdlet sets the goal state for an Azure load balancer. + + + + Set-AzureLoadBalancer + + Profile + + Specifies an Azure profile. + + AzureProfile + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for the load balancer that this parameter specifies. + + PSLoadBalancer + + + + + + LoadBalancer + + Specifies a load balancer. This cmdlet sets the goal state for the load balancer that this parameter specifies. + + PSLoadBalancer + + PSLoadBalancer + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureLoadBalancer + + + + New-AzureLoadBalancer + + + + Remove-AzureLoadBalancer + + + + + + + Set-AzureLocalNetworkGateway + + + + + + + + Set + AzureLocalNetworkGateway + + + + + + + Set-AzureLocalNetworkGateway + + Profile + + + AzureProfile + + + AddressPrefix + + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + LocalNetworkGateway + + + PSLocalNetworkGateway + + + + + + AddressPrefix + + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + 0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + + + none + + + LocalNetworkGateway + + + PSLocalNetworkGateway + + PSLocalNetworkGateway + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Set-AzureNetworkInterface + + Sets the goal state for a network interface. + + + + + Set + AzureNetworkInterface + + + + The Set-AzureNetworkInterface sets the goal state for an Azure network interface. + + + + Set-AzureNetworkInterface + + Profile + + Specifies an Azure profile. + + AzureProfile + + + NetworkInterface + + Specifies a NetworkInterface object that represents the goal state for a network interface. + + PSNetworkInterface + + + + + + NetworkInterface + + Specifies a NetworkInterface object that represents the goal state for a network interface. + + PSNetworkInterface + + PSNetworkInterface + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkInterface + + + + New-AzureNetworkInterface + + + + Remove-AzureNetworkInterface + + + + + + + Set-AzureNetworkSecurityGroup + + Sets the goal state for a network security group. + + + + + Set + AzureNetworkSecurityGroup + + + + The Set-AzureNetworkSecurityGroup cmdlet sets the goal state for an Azure network security group. + + + + Set-AzureNetworkSecurityGroup + + Profile + + Specifies an Azure profile. + + AzureProfile + + + NetworkSecurityGroup + + A Network Security Group object representing the goal state to which the Network Security Group should be set. + + PSNetworkSecurityGroup + + + + + + NetworkSecurityGroup + + A Network Security Group object representing the goal state to which the Network Security Group should be set. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureNetworkSecurityGroup + + + + New-AzureNetworkSecurityGroup + + + + Remove-AzureNetworkSecurityGroup + + + + + + + Set-AzureNetworkSecurityRuleConfig + + Sets the goal state for a network security rule configuration. + + + + + Set + AzureNetworkSecurityRuleConfig + + + + The Set-AzureNetworkSecurityRuleConfig cmdlet sets the goal state for an Azure network security rule configuration. + + + + Set-AzureNetworkSecurityRuleConfig + + Access + + Specifies whether network traffic is allowed or denied. The acceptable values for this parameter are:Allow and Deny. + + + Allow + Deny + + + + Description + + Specifies a description for a rule configuration. The maximum size is 140 characters. + + String + + + DestinationAddressPrefix + + Specifies a destination address prefix. The acceptable values for this parameter are: + +-- A Classless Interdomain Routing (CIDR) address +-- A destination IP address range +-- A wildcard character (*) to match any IP address + You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. + + String + + + DestinationPortRange + + Specifies a destination port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + + Direction + + Specifies whether a rule is evaluated for incoming or outgoing traffic. The acceptable values for this parameter are:Inbound and Outbound. + + + Inbound + Outbound + + + + Priority + + Specifies the priority of a rule configuration. The acceptable values for this parameter are:An integer between 100 and 4096. + The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + + Int32 + + + Profile + + Specifies an Azure proile. + + AzureProfile + + + Protocol + + Specifies the network protocol that a rule configuration applies to. The acceptable values for this parameter are: + +--Tcp +-- Udp +—A wildcard character (*) to match both + + + Tcp + Udp + * + + + + SourceAddressPrefix + + Specifies a source address prefix. The acceptable values for this parameter are: + +-- A CIDR +-- A source IP range +-- A wildcard character (*) to match any IP address + You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. + + String + + + SourcePortRange + + Specifies the source port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + + Name + + Specifies the name of the network security rule configuration to set. + + String + + + NetworkSecurityGroup + + Specifies the NetworkSecurityGroup object that contains the network security rule configuration to set. + + PSNetworkSecurityGroup + + + + + + Access + + Specifies whether network traffic is allowed or denied. The acceptable values for this parameter are:Allow and Deny. + + String + + String + + + none + + + Description + + Specifies a description for a rule configuration. The maximum size is 140 characters. + + String + + String + + + none + + + DestinationAddressPrefix + + Specifies a destination address prefix. The acceptable values for this parameter are: + +-- A Classless Interdomain Routing (CIDR) address +-- A destination IP address range +-- A wildcard character (*) to match any IP address + You can use tags such as VirtualNetwork, AzureLoadBalancer, and Internet. + + String + + String + + + none + + + DestinationPortRange + + Specifies a destination port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + String + + + none + + + Direction + + Specifies whether a rule is evaluated for incoming or outgoing traffic. The acceptable values for this parameter are:Inbound and Outbound. + + String + + String + + + none + + + Name + + Specifies the name of the network security rule configuration to set. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies the NetworkSecurityGroup object that contains the network security rule configuration to set. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + Priority + + Specifies the priority of a rule configuration. The acceptable values for this parameter are:An integer between 100 and 4096. + The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule. + + Int32 + + Int32 + + + none + + + Profile + + Specifies an Azure proile. + + AzureProfile + + AzureProfile + + + none + + + Protocol + + Specifies the network protocol that a rule configuration applies to. The acceptable values for this parameter are: + +--Tcp +-- Udp +—A wildcard character (*) to match both + + String + + String + + + none + + + SourceAddressPrefix + + Specifies a source address prefix. The acceptable values for this parameter are: + +-- A CIDR +-- A source IP range +-- A wildcard character (*) to match any IP address + You can also use tags such as VirtualNetwork, AzureLoadBalancer and Internet. + + String + + String + + + none + + + SourcePortRange + + Specifies the source port or range. The acceptable values for this parameter are: + +-- An integer +-- A range of integers between 0 and 65535 +-- A wildcard character (*) to match any port + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureNetworkSecurityRuleConfig + + + + Get-AzureNetworkSecurityRuleConfig + + + + New-AzureNetworkSecurityRuleConfig + + + + Remove-AzureNetworkSecurityRuleConfig + + + + + + + Set-AzurePublicIpAddress + + Sets the goal state for a public IP address. + + + + + Set + AzurePublicIpAddress + + + + The Set-AzurePublicIpAddress cmdlet sets the goal state for a public IP address. + + + + Set-AzurePublicIpAddress + + Profile + + Specifies an Azure profile. + + AzureProfile + + + PublicIpAddress + + Specifis a PublicIpAddress object that represents the goal state to which the public IP address should be set. + + PSPublicIpAddress + + + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + PublicIpAddress + + Specifis a PublicIpAddress object that represents the goal state to which the public IP address should be set. + + PSPublicIpAddress + + PSPublicIpAddress + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzurePublicIpAddress + + + + New-AzurePublicIpAddress + + + + Remove-AzurePublicIpAddress + + + + + + + Set-AzureRouteConfig + + Sets the goal state for a route. + + + + + Set + AzureRouteConfig + + + + The Set-AzureRouteConfig cmdlet sets the goal state for an Azure route. + + + + Set-AzureRouteConfig + + AddressPrefix + + Specifies the destination, in Classless Interdomain Routing (CIDR) format, to which the route applies. + + String + + + NextHopIpAddress + + Specifies the IP address of a virtual appliance that you add to your Azure virtual network. This route forwards packets to that address. Specify this parameter only if you specify a value of VirtualAppliance for the NextHopType parameter. + + String + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + Name + + Specifies the name of the route that this cmdlet modifies. + + String + + + NextHopType + + Specifies how this route forwards packets. Valid values are: + +-- Internet. The default Internet gateway provided by Azure. +-- None. If you specify this value, the route does not forward packets. +-- VirtualAppliance. A virtual appliance that you add to your Azure virtual network. +-- VirtualNetworkGateway. An Azure server-to-server virtual private network gateway. +-- VnetLocal. The local virtual network. If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, select a value of VnetLocal for each subnet to forward to the other subnet. + + + Internet + None + VirtualAppliance + VirtualNetworkGateway + VnetLocal + + + + RouteTable + + Specifies the route table with which this route is associated. + + PSRouteTable + + + + + + AddressPrefix + + Specifies the destination, in Classless Interdomain Routing (CIDR) format, to which the route applies. + + String + + String + + + none + + + Name + + Specifies the name of the route that this cmdlet modifies. + + String + + String + + + none + + + NextHopIpAddress + + Specifies the IP address of a virtual appliance that you add to your Azure virtual network. This route forwards packets to that address. Specify this parameter only if you specify a value of VirtualAppliance for the NextHopType parameter. + + String + + String + + + none + + + NextHopType + + Specifies how this route forwards packets. Valid values are: + +-- Internet. The default Internet gateway provided by Azure. +-- None. If you specify this value, the route does not forward packets. +-- VirtualAppliance. A virtual appliance that you add to your Azure virtual network. +-- VirtualNetworkGateway. An Azure server-to-server virtual private network gateway. +-- VnetLocal. The local virtual network. If you have two subnets, 10.1.0.0/16 and 10.2.0.0/16 in the same virtual network, select a value of VnetLocal for each subnet to forward to the other subnet. + + String + + String + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + Specifies the route table with which this route is associated. + + PSRouteTable + + PSRouteTable + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Modify a route + + + + + PS C:\>Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" | Set-AzureRouteConfig -Name "route02" -AddressPrefix 10.4.0.0/16 -NextHopType VnetLocal | Set-AzureRouteTable +Name : routetable01 +ResourceGroupName : ResourceGroup11 +Location : eastus +Id : /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Microsoft.Networ + k/routeTables/routetable01 +Etag : W/"58c2922e-9efe-4554-a457-956ef44bc718" +ProvisioningState : Succeeded +Tags : +Routes : [ + { + "Name": "route07", + "Etag": "W/\"58c2922e-9efe-4554-a457-956ef44bc718\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route07", + "AddressPrefix": "10.1.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + }, + { + "Name": "route02", + "Etag": "W/\"58c2922e-9efe-4554-a457-956ef44bc718\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route02", + "AddressPrefix": "10.4.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + } + ] +Subnets : [] + + + This command gets the route table named routetable01 by using the Get-AzureRouteTable cmdlet. The command passes that table to the current cmdlet by using the pipeline operator. + The current cmdlet modifies the route named route02, and then passes the result to the Set-AzureRouteTable cmdlet, which updates the table to reflect your changes. + + + + + + + + + + + + + Add-AzureRouteConfig + + + + Get-AzureRouteConfig + + + + Get-AzureRouteTable + + + + New-AzureRouteConfig + + + + Remove-AzureRouteConfig + + + + Set-AzureRouteTable + + + + + + + Set-AzureRouteTable + + Sets the goal state for a route table. + + + + + Set + AzureRouteTable + + + + The Set-AzureRouteTable cmdlet sets the goal state for an Azure route table. + + + + Set-AzureRouteTable + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + RouteTable + + Specifies a route table object that represents the goal state to which this cmdlet sets the route table. + + PSRouteTable + + + + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + Specifies a route table object that represents the goal state to which this cmdlet sets the route table. + + PSRouteTable + + PSRouteTable + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Add a route and then set the goal state of the route table + + + + + PS C:\>Get-AzureRouteTable -ResourceGroupName "ResourceGroup11" -Name "routetable01" | Add-AzureRouteConfig -Name "route02" -AddressPrefix 10.2.0.0/16 -NextHopType VnetLocal | Set-AzureRouteTable +Name : routetable01 +ResourceGroupName : ResourceGroup11 +Location : eastus +Id : /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Microsoft.Networ + k/routeTables/routetable01 +Etag : W/"f13e1bc8-d41f-44d0-882d-b8b5a1134f59" +ProvisioningState : Succeeded +Tags : +Routes : [ + { + "Name": "route07", + "Etag": "W/\"f13e1bc8-d41f-44d0-882d-b8b5a1134f59\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route07", + "AddressPrefix": "10.1.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + }, + { + "Name": "route02", + "Etag": "W/\"f13e1bc8-d41f-44d0-882d-b8b5a1134f59\"", + "Id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/ResourceGroup11/providers/Micro + soft.Network/routeTables/routetable01/routes/route02", + "AddressPrefix": "10.2.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": "Succeeded" + }, + { + "Name": "route13", + "Etag": null, + "Id": null, + "AddressPrefix": "10.3.0.0/16", + "NextHopType": "VnetLocal", + "NextHopIpAddress": null, + "ProvisioningState": null + } + ] +Subnets : [] + + + This command gets the route table named routetable01 by using Get-AzureRouteTable cmdlet. The command passes that table to the Add-AzureRouteConfig cmdlet by using the pipeline operator. + Add-AzureRouteConfig adds the route named route02, and then passes the result to the current cmdlet, which updates the table to reflect your changes. + + + + + + + + + + + + + Add-AzureRouteConfig + + + + Get-AzureRouteTable + + + + New-AzureRouteTable + + + + Remove-AzureRouteTable + + + + + + + Set-AzureVirtualNetworkGatewayConnectionSharedKey + + + + + + + + Set + AzureVirtualNetworkGatewayConnectionSharedKey + + + + + + + Set-AzureVirtualNetworkGatewayConnectionSharedKey + + Force + + + + + Profile + + + AzureProfile + + + Name + + + String + + + ResourceGroupName + + + String + + + Value + + + String + + + + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + Name + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + ResourceGroupName + + + String + + String + + + none + + + Value + + + String + + String + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Set-AzureVirtualNetworkGatewayConnection + + + + + + + + Set + AzureVirtualNetworkGatewayConnection + + + + + + + Set-AzureVirtualNetworkGatewayConnection + + Force + + + + + Profile + + + AzureProfile + + + VirtualNetworkGatewayConnection + + + PSVirtualNetworkGatewayConnection + + + + + + Force + + + SwitchParameter + + SwitchParameter + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + VirtualNetworkGatewayConnection + + + PSVirtualNetworkGatewayConnection + + PSVirtualNetworkGatewayConnection + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + + Set-AzureVirtualNetworkSubnetConfig + + Sets the goal state for a subnet configuration in a virtual network. + + + + + Set + AzureVirtualNetworkSubnetConfig + + + + The Set-AzureVirtualNetworkSubnetConfig cmdlet sets the goal state for a subnet configuration in an Azure virtual network. + + + + Set-AzureVirtualNetworkSubnetConfig + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. + + PSNetworkSecurityGroup + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + RouteTable + + + + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + + Name + + Specifies the name of a subnet configuration. + + String + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration. + + PSVirtualNetwork + + + + Set-AzureVirtualNetworkSubnetConfig + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + + Profile + + Specifies an Azure profile. + + AzureProfile + + + RouteTableId + + + + + System.String + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + + Name + + Specifies the name of a subnet configuration. + + String + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration. + + PSVirtualNetwork + + + + + + AddressPrefix + + Specifies a range of IP addresses for a subnet configuration. + + String + + String + + + none + + + Name + + Specifies the name of a subnet configuration. + + String + + String + + + none + + + NetworkSecurityGroup + + Specifies a NetworkSecurityGroup object. + + PSNetworkSecurityGroup + + PSNetworkSecurityGroup + + + none + + + NetworkSecurityGroupId + + Specifies the ID of a network security group. + + String + + String + + + none + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + RouteTable + + + + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + Microsoft.Azure.Commands.Network.Models.PSRouteTable + + + none + + + RouteTableId + + + + + System.String + + System.String + + + none + + + VirtualNetwork + + Specifies the VirtualNetwork object that contains the subnet configuration. + + PSVirtualNetwork + + PSVirtualNetwork + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Add-AzureVirtualNetworkSubnetConfig + + + + Get-AzureVirtualNetworkSubnetConfig + + + + New-AzureVirtualNetworkSubnetConfig + + + + Remove-AzureVirtualNetworkSubnetConfig + + + + + + + Set-AzureVirtualNetwork + + Sets the goal state for a virtual network. + + + + + Set + AzureVirtualNetwork + + + + The Set-AzureVirtualNetwork cmdlet sets the goal state for an Azure virtual network. + + + + Set-AzureVirtualNetwork + + Profile + + Specifies an Azure profile. + + AzureProfile + + + VirtualNetwork + + Specifies a VirtualNetwork object that represents the goal state. + + PSVirtualNetwork + + + + + + Profile + + Specifies an Azure profile. + + AzureProfile + + AzureProfile + + + none + + + VirtualNetwork + + Specifies a VirtualNetwork object that represents the goal state. + + PSVirtualNetwork + + PSVirtualNetwork + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + + + + + + + + + + + + + + + + Get-AzureVirtualNetwork + + + + New-AzureVirtualNetwork + + + + Remove-AzureVirtualNetwork + + + + + + + Start-AzureApplicationGateway + + Starts an application gateway. + + + + + Start + AzureApplicationGateway + + + + The Start-AzureApplicationGateway cmdlet starts an Azure application gateway + + + + Start-AzureApplicationGateway + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway to start. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway to start. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example1: Start an application gateway + + + + + PS C:\> $ AppGw = Start-AzureApplicationGateway -ApplicationGateway $AppGw + + + This command starts the application gateway stored in the $AppGw variable. + + + + + + + + + + + + + Stop-AzureApplicationGateway + + + + + + + Stop-AzureApplicationGateway + + Stops an application gateway + + + + + Stop + AzureApplicationGateway + + + + + + + Stop-AzureApplicationGateway + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + + ApplicationGateway + + Specifies the application gateway to stop. + + PSApplicationGateway + + + + + + ApplicationGateway + + Specifies the application gateway to stop. + + PSApplicationGateway + + PSApplicationGateway + + + none + + + Profile + + Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile. + + AzureProfile + + AzureProfile + + + none + + + + + + System.String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Example 1: Stop an application gateway + + + + + PS C:\> $AppGw = Stop-AzureApplicationGateway -ApplicationGateway $AppGw + + + This command stops the application gateway stored in the $AppGw variable. + + + + + + + + + + + + + + + + Test-AzureDnsAvailability + + + + + + + + Test + AzureDnsAvailability + + + + + + + Test-AzureDnsAvailability + + Profile + + + AzureProfile + + + DomainQualifiedName + + + String + + + Location + + + String + + + + + + DomainQualifiedName + + + String + + String + + + none + + + Location + + + String + + String + + + none + + + Profile + + + AzureProfile + + AzureProfile + + + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1: + + + + + PS C:\> + + + + + + + + + + + + + + + + + + + From 0eba234477f7079a35c777b2007dd88a79665ea8 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Wed, 2 Sep 2015 16:28:44 -0700 Subject: [PATCH 29/58] Revert the non-terminating error message to a warning message. --- ChangeLog.md | 1 - .../IaaS/IaaSDeploymentManagementCmdletBase.cs | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index a1185a65229a..65d7f779e90f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,7 +7,6 @@ * Changed the output format of Get image cmdlets as a table * Fixed Set-AzureVMAccessExtension cmdlet * Azure Compute (Service Management) cmdlets - * Changed the warning message to a non-terminating error message for ResourceNotFound in VM cmdlets * Exposed ComputeImageConfig in Get-AzurePlatformVMImage cmdlet * Fixed Publish-AzurePlatformExtension and Set-AzurePlatformExtension cmdlets * Azure Backup - added the following cmdlets diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs index edeb4947b8b2..a4289b86d8f7 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/IaaSDeploymentManagementCmdletBase.cs @@ -79,12 +79,7 @@ protected virtual void ExecuteCommand() } else { - WriteError(new ErrorRecord( - new InvalidOperationException(string.Format(CultureInfo.CurrentUICulture, - Properties.Resources.NoDeploymentFoundInService, ServiceName)), - string.Empty, - ErrorCategory.ResourceUnavailable, - null)); + WriteWarning(string.Format(CultureInfo.CurrentUICulture, Resources.NoDeploymentFoundInService, ServiceName)); } } }); From d8cf94374735cfdc1803bca8424f3b1b679e28da Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Thu, 3 Sep 2015 10:35:15 -0700 Subject: [PATCH 30/58] Warn removal of ExpandPermissions switch parameter --- .../Cmdlets/Implementation/GetAzureResourceCmdlet.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs index f0357ad23ee0..1d10bf7bbcbe 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs @@ -239,6 +239,10 @@ protected override void OnProcessRecord() { this.WriteWarning("The ParentResource parameter is obsolete and will be removed in future releases. Please use the -ResourceType and -ResourceName parameters instead."); } + if (this.ExpandPermissions.IsPresent) + { + this.WriteWarning("The ExpandPermissions parameter is obsolete and will be removed in future releases."); + } this.subscriptionIds.AddRange(this.SubscriptionId.CoalesceEnumerable()); } From 4e7024a462fcdee4363166fc5b32c5b4a390e269 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Thu, 3 Sep 2015 16:45:20 -0700 Subject: [PATCH 31/58] Add more warning messages for upcoming changes in ARM cmdlets --- .../GetAzureResourceGroupDeploymentCommand.cs | 5 +- .../NewAzureResourceGroupDeploymentCommand.cs | 4 +- ...moveAzureResourceGroupDeploymentCommand.cs | 1 + ...StopAzureResourceGroupDeploymentCommand.cs | 1 + .../ResourceGroups/GetAzureLocationCommand.cs | 1 + .../GetAzureResourceGroupCommand.cs | 9 +++ .../GetAzureResourceGroupLogCommand.cs | 59 ------------------- .../NewAzureResourceGroupCommand.cs | 1 + .../RemoveAzureResourceGroupCommand.cs | 1 + .../SetAzureResourceGroupCommand.cs | 2 +- ...zureResourceGroupGalleryTemplateCommand.cs | 1 + .../TestAzureResourceGroupTemplateCommand.cs | 4 ++ 12 files changed, 24 insertions(+), 65 deletions(-) delete mode 100644 src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs index 9e62bfdf2ce6..3719b435d38c 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs @@ -47,11 +47,10 @@ public override void ExecuteCmdlet() new List() { ProvisioningState } }; - if(!string.IsNullOrEmpty(Name)) + if(!string.IsNullOrEmpty(ProvisioningState)) { - WriteWarning("The parameter 'Name' in Get-AzureResourceGroupDeployment cmdlet is being renamed to DeploymentName and will be updated in a future release."); + WriteWarning("The ProvisioningState parameter is being deprecated and will be removed in a future release."); } - WriteObject(ResourcesClient.FilterResourceGroupDeployments(options), true); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs index 916570c27eba..76a1555eb444 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs @@ -61,9 +61,9 @@ public override void ExecuteCmdlet() StorageAccountName = StorageAccountName }; - if(!string.IsNullOrEmpty(TemplateVersion) || !string.IsNullOrEmpty(StorageAccountName)) + if (!string.IsNullOrEmpty(TemplateVersion) || !string.IsNullOrEmpty(StorageAccountName) || !string.IsNullOrEmpty(GalleryTemplateIdentity)) { - WriteWarning("The TemplateVersion and StorageAccountName parameters in New-AzureResourceGroupDeployment cmdlet is being deprecated and will be removed in a future release."); + WriteWarning("The GalleryTemplateIdentity, TemplateVersion and StorageAccountName parameters in New-AzureResourceGroupDeployment cmdlet is being deprecated and will be removed in a future release."); } if(this.Mode == DeploymentMode.Complete) diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs index 8a90dfa99070..718995251566 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs @@ -50,6 +50,7 @@ public override void ExecuteCmdlet() if (PassThru) { + WriteWarning("The PassThru switch parameter is being deprecated and will be removed in a future release."); WriteObject(true); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs index 7ddcb77495fe..2e73d77ec4a6 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs @@ -50,6 +50,7 @@ public override void ExecuteCmdlet() if (PassThru) { + WriteWarning("The output object of this cmdlet will be modified in a future release."); WriteObject(true); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs index 69834262df57..08a86bfbd99d 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs @@ -29,6 +29,7 @@ public class GetAzureLocationCommand : ResourcesBaseCmdlet, IModuleAssemblyIniti { public override void ExecuteCmdlet() { + WriteWarning("The output object of this cmdlet will be modified in a future release."); WriteObject(ResourcesClient.GetLocations(), true); } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs index 12ece2649c21..c3725bd00a90 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs @@ -38,6 +38,15 @@ public class GetAzureResourceGroupCommand : ResourcesBaseCmdlet public override void ExecuteCmdlet() { + if(this.Tag != null) + { + WriteWarning("The Tag parameter is being deprecated and will be removed in a future release."); + } + if(this.Detailed.IsPresent) + { + WriteWarning("The Detailed switch parameter is being deprecated and will be removed in a future release."); + } + WriteWarning("The output object of this cmdlet will be modified in a future release."); var detailed = Detailed.IsPresent || !string.IsNullOrEmpty(Name); WriteObject(ResourcesClient.FilterResourceGroups(Name, Tag, detailed), true); } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs deleted file mode 100644 index d8572700da5c..000000000000 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs +++ /dev/null @@ -1,59 +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.Generic; -using System.Management.Automation; -using Microsoft.Azure.Commands.Resources.Models; - -namespace Microsoft.Azure.Commands.Resources -{ - /// - /// Get the list of events for a deployment. - /// - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //[Cmdlet(VerbsCommon.Get, "AzureResourceGroupLog", DefaultParameterSetName = LastDeploymentSetName), OutputType(typeof(List))] - public class GetAzureResourceGroupLogCommand : ResourcesBaseCmdlet - { - internal const string AllSetName = "All"; - internal const string LastDeploymentSetName = "Last deployment"; - internal const string DeploymentNameSetName = "Deployment by name"; - - [Alias("ResourceGroupName")] - [Parameter(Position = 0, ParameterSetName = AllSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Name of the resource group you want to see the logs.")] - [Parameter(Position = 0, ParameterSetName = LastDeploymentSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Name of the resource group you want to see the logs.")] - [Parameter(Position = 0, ParameterSetName = DeploymentNameSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Name of the resource group you want to see the logs.")] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(ParameterSetName = DeploymentNameSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Name of the deployment whose logs you want to see.")] - [ValidateNotNullOrEmpty] - public string DeploymentName { get; set; } - - [Parameter(ParameterSetName = AllSetName, HelpMessage = "Optional. If given, return logs of all the operations including CRUD and deployment.")] - public SwitchParameter All { get; set; } - - public override void ExecuteCmdlet() - { - GetPSResourceGroupLogParameters parameters = new GetPSResourceGroupLogParameters - { - Name = Name, - DeploymentName = DeploymentName, - All = All.IsPresent - }; - - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //WriteObject(ResourcesClient.GetResourceGroupLogs(parameters), true); - } - } -} \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs index f1c2f1c2d8d8..cc97b30fefb1 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs @@ -67,6 +67,7 @@ public override void ExecuteCmdlet() { WriteWarning("The deployment parameters in New-AzureResourceGroup cmdlet is being deprecated and will be removed in a future release. Please use New-AzureResourceGroupDeployment to submit deployments."); } + WriteWarning("The output object of this cmdlet is being modified and will be changed in a future release."); WriteObject(ResourcesClient.CreatePSResourceGroup(parameters)); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs index 3466c35e8ee1..4ca85c73e5af 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs @@ -46,6 +46,7 @@ public override void ExecuteCmdlet() if (PassThru) { + WriteWarning("The PassThru switch parameter is being deprecated and will be removed in a future release."); WriteObject(true); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs index f0229511ca01..7b9b06753775 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs @@ -40,7 +40,7 @@ public override void ExecuteCmdlet() ResourceGroupName = Name, Tag = Tag }; - + WriteWarning("The output object of this cmdlet will be modified in a future release."); WriteObject(ResourcesClient.UpdatePSResourceGroup(parameters)); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs index b16092d8d93f..1e5d49804fd9 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs @@ -37,6 +37,7 @@ public class SaveAzureResourceGroupGalleryTemplateCommand : ResourcesBaseCmdlet public override void ExecuteCmdlet() { + WriteWarning("This cmdlet is being deprecated and will be removed in a future release."); string path = GalleryTemplatesClient.DownloadGalleryTemplateFile( Identity, string.IsNullOrEmpty(Path) ? System.IO.Path.Combine(CurrentPath(), Identity) : this.TryResolvePath(Path), diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs index 7b9b658e11d1..ec3a01c99250 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs @@ -41,6 +41,10 @@ public TestAzureResourceGroupTemplateCommand() public override void ExecuteCmdlet() { this.WriteWarning("The Test-AzureResourceGroupTemplate cmdlet is being renamed to Test-AzureResourceGroupDeployment in a future release."); + if (!string.IsNullOrEmpty(TemplateVersion) || !string.IsNullOrEmpty(StorageAccountName) || !string.IsNullOrEmpty(GalleryTemplateIdentity)) + { + WriteWarning("The GalleryTemplateIdentity, TemplateVersion and StorageAccountName parameters are being deprecated and will be removed in a future release."); + } ValidatePSResourceGroupDeploymentParameters parameters = new ValidatePSResourceGroupDeploymentParameters() { ResourceGroupName = ResourceGroupName, From 290a49ab14d99ed022415b2dff171e9ef5f87da0 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Thu, 3 Sep 2015 16:48:08 -0700 Subject: [PATCH 32/58] More changes --- .../Resources/Commands.Resources/Commands.Resources.csproj | 1 - .../ResourceGroups/NewAzureResourceGroupCommand.cs | 2 +- .../Templates/GetAzureResourceGroupGalleryTemplateCommand.cs | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index 08d91354ed46..a0144ef468ef 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -203,7 +203,6 @@ - diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs index cc97b30fefb1..c87d87fdaabf 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs @@ -67,7 +67,7 @@ public override void ExecuteCmdlet() { WriteWarning("The deployment parameters in New-AzureResourceGroup cmdlet is being deprecated and will be removed in a future release. Please use New-AzureResourceGroupDeployment to submit deployments."); } - WriteWarning("The output object of this cmdlet is being modified and will be changed in a future release."); + WriteWarning("The output object of this cmdlet will be modified in a future release."); WriteObject(ResourcesClient.CreatePSResourceGroup(parameters)); } } diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs index 54fdb43e08f3..ce355a4d61ec 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs @@ -49,6 +49,7 @@ public class GetAzureResourceGroupGalleryTemplateCommand : ResourcesBaseCmdlet public override void ExecuteCmdlet() { + WriteWarning("This cmdlet is being deprecated and will be removed in a future release."); FilterGalleryTemplatesOptions options = new FilterGalleryTemplatesOptions() { Category = Category, From c050447e0e3a74a5bb35a586b9fc088106f820bf Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Thu, 3 Sep 2015 17:17:00 -0700 Subject: [PATCH 33/58] Remove resource log test from Commands.Resources.Test --- .../Commands.Resources.Test.csproj | 3 +- .../GetAzureResourceGroupLogCommandTests.cs | 104 ------------------ 2 files changed, 1 insertion(+), 106 deletions(-) delete mode 100644 src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs 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 536e9500d0ff..7afeb0988eff 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -186,7 +186,6 @@ - @@ -474,7 +473,7 @@ Always - + Always diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs deleted file mode 100644 index 9428c416b372..000000000000 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs +++ /dev/null @@ -1,104 +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.Generic; -using System.Linq; -using System.Management.Automation; -using Microsoft.Azure.Commands.Resources.Models; -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Moq; -using Xunit; - -namespace Microsoft.Azure.Commands.Resources.Test -{ - public class GetAzureResourceGroupLogCommandTests - { - private GetAzureResourceGroupLogCommand cmdlet; - - private Mock resourcesClientMock; - - private Mock commandRuntimeMock; - - public GetAzureResourceGroupLogCommandTests() - { - resourcesClientMock = new Mock(); - commandRuntimeMock = new Mock(); - cmdlet = new GetAzureResourceGroupLogCommand() - { - CommandRuntime = commandRuntimeMock.Object, - ResourcesClient = resourcesClientMock.Object - }; - } - - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //[Fact] - //[Trait(Category.AcceptanceType, Category.CheckIn)] - //public void GetAzureResourceGroupLogOutputsProperties() - //{ - // List result = new List(); - // result.Add(new PSDeploymentEventData - // { - // EventId = "ac7d2ab5-698a-4c33-9c19-0a93d3d7f527", - // EventName = "Start request", - // EventSource = "Microsoft Resources", - // Channels = "Operation", - // Level = "Informational", - // Timestamp = DateTime.Now, - // OperationId = "c0f2e85f-efb0-47d0-bf90-f983ec8be91d", - // OperationName = "Microsoft.Resources/subscriptions/resourcegroups/deployments/write", - // Status = "Succeeded", - // SubStatus = "Created", - // ResourceGroupName = "foo", - // ResourceProvider = "Microsoft Resources", - // ResourceUri = - // "/subscriptions/ffce8037-a374-48bf-901d-dac4e3ea8c09/resourcegroups/foo/deployments/testdeploy", - // HttpRequest = new PSDeploymentEventDataHttpRequest - // { - // Url = "http://path/subscriptions/ffce8037-a374-48bf-901d-dac4e3ea8c09/resourcegroups/foo/deployments/testdeploy", - // Method = "PUT", - // ClientId = "1234", - // ClientIpAddress = "123.123.123.123" - // }, - // Authorization = new PSDeploymentEventDataAuthorization - // { - // Action = "PUT", - // Condition = "", - // Role = "Sender", - // Scope = "None" - // }, - // Claims = new Dictionary - // { - // {"aud", "https://management.core.windows.net/"}, - // {"iss", "https://sts.windows.net/123456/"}, - // {"iat", "h123445"} - // }, - // Properties = new Dictionary() - // }); - - // GetPSResourceGroupLogParameters expected = new GetPSResourceGroupLogParameters(); - - // resourcesClientMock.Setup(f => f.GetResourceGroupLogs(It.IsAny())) - // .Returns(result) - // .Callback((GetPSResourceGroupLogParameters r) => expected = r); - - // cmdlet.Name = "foo"; - - // cmdlet.ExecuteCmdlet(); - - // Assert.Equal(1, result.Count()); - // Assert.Equal("foo", expected.Name); - //} - } -} From 3bcb70128065e9b1263104b3f14856eb9f75e0dc Mon Sep 17 00:00:00 2001 From: huangpf Date: Thu, 3 Sep 2015 18:14:16 -0700 Subject: [PATCH 34/58] Data Collection Confirmation --- src/Common/Commands.Common/AzurePSCmdlet.cs | 128 +++++++++++++++++- .../AzurePSDataCollectionProfile.cs | 39 ++++++ .../Commands.Common/Commands.Common.csproj | 1 + .../Properties/Resources.Designer.cs | 59 +++++++- .../Commands.Common/Properties/Resources.resx | 28 ++++ .../Commands.Profile/Commands.Profile.csproj | 2 + .../DisableAzureDataCollection.cs | 30 ++++ .../EnableAzureDataCollection.cs | 37 +++++ 8 files changed, 322 insertions(+), 2 deletions(-) create mode 100644 src/Common/Commands.Common/AzurePSDataCollectionProfile.cs create mode 100644 src/Common/Commands.Profile/DataCollection/DisableAzureDataCollection.cs create mode 100644 src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index 6e3cfc3d0bae..bef5318f2100 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -12,16 +12,19 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Collections.Concurrent; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.IdentityModel.Clients.ActiveDirectory; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Common.Properties; +using Newtonsoft.Json; using System; +using System.Collections.Concurrent; using System.Diagnostics; using System.IO; using System.Management.Automation; +using System.Management.Automation.Host; +using System.Threading; namespace Microsoft.WindowsAzure.Commands.Utilities.Common { @@ -31,6 +34,7 @@ public abstract class AzurePSCmdlet : PSCmdlet private RecordingTracingInterceptor _httpTracingInterceptor; private DebugStreamTraceListener _adalListener; protected static AzureProfile _currentProfile = null; + protected static AzurePSDataCollectionProfile _dataCollectionProfile = null; [Parameter(Mandatory = false, HelpMessage = "In-memory profile.")] public AzureProfile Profile { get; set; } @@ -147,11 +151,133 @@ protected static void SetTokenCacheForProfile(AzureProfile profile) } } + /// + /// Initialize the data collection profile + /// + protected static void InitializeDataCollectionProfile() + { + if (_dataCollectionProfile != null && _dataCollectionProfile.EnableAzureDataCollection.HasValue) + { + return; + } + + // Get the value of the environment variable for Azure PS data collection setting. + string value = Environment.GetEnvironmentVariable(AzurePSDataCollectionProfile.EnvironmentVariableName); + if (!string.IsNullOrWhiteSpace(value)) + { + if (string.Equals(value, bool.FalseString, StringComparison.OrdinalIgnoreCase)) + { + // Disable data collection only if it is explictly set to 'false'. + _dataCollectionProfile = new AzurePSDataCollectionProfile(true); + } + else if (string.Equals(value, bool.TrueString, StringComparison.OrdinalIgnoreCase)) + { + // Enable data collection only if it is explictly set to 'true'. + _dataCollectionProfile = new AzurePSDataCollectionProfile(false); + } + } + + // If the environment value is null or empty, or not correctly set, try to read the setting from default file location. + if (_dataCollectionProfile == null) + { + string fileFullPath = Path.Combine(AzureSession.ProfileDirectory, AzurePSDataCollectionProfile.DefaultFileName); + if (File.Exists(fileFullPath)) + { + string contents = File.ReadAllText(fileFullPath); + _dataCollectionProfile = JsonConvert.DeserializeObject(contents); + } + } + + // If the environment variable or file content is not set, create a new profile object. + if (_dataCollectionProfile == null) + { + _dataCollectionProfile = new AzurePSDataCollectionProfile(); + } + } + + /// + /// Get the data collection profile + /// + protected static AzurePSDataCollectionProfile GetDataCollectionProfile() + { + if (_dataCollectionProfile == null) + { + InitializeDataCollectionProfile(); + } + + return _dataCollectionProfile; + } + + /// + /// Save the current data collection profile Json data into the default file path + /// + /// + protected void SaveDataCollectionProfile() + { + if (_dataCollectionProfile == null) + { + InitializeDataCollectionProfile(); + } + + string fileFullPath = Path.Combine(AzureSession.ProfileDirectory, AzurePSDataCollectionProfile.DefaultFileName); + var contents = JsonConvert.SerializeObject(_dataCollectionProfile); + AzureSession.DataStore.WriteFile(fileFullPath, contents); + WriteWarning(string.Format(Resources.DataCollectionSaveFileInformation, fileFullPath)); + } + + /// + /// Prompt for the current data collection profile + /// + /// + protected void PromptForDataCollectionProfileIfNotExists() + { + // Initialize it from the environment variable or profile file. + InitializeDataCollectionProfile(); + + if (!_dataCollectionProfile.EnableAzureDataCollection.HasValue) + { + WriteWarning(Resources.DataCollectionPrompt); + + const double timeToWaitInSeconds = 60; + var status = string.Format(Resources.DataCollectionConfirmTime, timeToWaitInSeconds); + ProgressRecord record = new ProgressRecord(0, Resources.DataCollectionActivity, status); + + var startTime = DateTime.Now; + var endTime = DateTime.Now; + double elapsedSeconds = 0; + + while (!this.Host.UI.RawUI.KeyAvailable && elapsedSeconds < timeToWaitInSeconds) + { + Thread.Sleep(TimeSpan.FromMilliseconds(10)); + endTime = DateTime.Now; + + elapsedSeconds = (endTime - startTime).TotalSeconds; + record.PercentComplete = ((int)elapsedSeconds * 100 / (int)timeToWaitInSeconds); + WriteProgress(record); + } + + bool enabled = false; + if (this.Host.UI.RawUI.KeyAvailable) + { + KeyInfo keyInfo = this.Host.UI.RawUI.ReadKey(ReadKeyOptions.NoEcho); + enabled = (keyInfo.Character == 'Y' || keyInfo.Character == 'y'); + } + + _dataCollectionProfile.EnableAzureDataCollection = enabled; + + WriteWarning(enabled ? Resources.DataCollectionConfirmYes : Resources.DataCollectionConfirmNo); + + SaveDataCollectionProfile(); + } + } + /// /// Cmdlet begin process. Write to logs, setup Http Tracing and initialize profile /// protected override void BeginProcessing() { + PromptForDataCollectionProfileIfNotExists(); + InitializeProfile(); if (string.IsNullOrEmpty(ParameterSetName)) { diff --git a/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs b/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs new file mode 100644 index 000000000000..c5b5cd429d45 --- /dev/null +++ b/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// 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.IO; +using Newtonsoft.Json; +using Microsoft.Azure.Common.Authentication; + +namespace Microsoft.WindowsAzure.Commands.Common +{ + public class AzurePSDataCollectionProfile + { + public const string EnvironmentVariableName = "Azure_PS_Data_Collection"; + public static string DefaultFileName = "AzureDataCollectionProfile.dat"; + + public AzurePSDataCollectionProfile() + { + } + + public AzurePSDataCollectionProfile(bool enable) + { + EnableAzureDataCollection = enable; + } + + [JsonProperty(PropertyName = "enableAzureDataCollection")] + public bool? EnableAzureDataCollection { get; set; } + } +} diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 2483d0c2e001..b908e8a2341a 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -138,6 +138,7 @@ + diff --git a/src/Common/Commands.Common/Properties/Resources.Designer.cs b/src/Common/Commands.Common/Properties/Resources.Designer.cs index 0ed4db8b136b..8a0607d01c77 100644 --- a/src/Common/Commands.Common/Properties/Resources.Designer.cs +++ b/src/Common/Commands.Common/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -690,6 +690,63 @@ public static string DatacenterBlobQuery { } } + /// + /// Looks up a localized string similar to Microsoft Azure PowerShell Data Collection Confirmation. + /// + public static string DataCollectionActivity { + get { + return ResourceManager.GetString("DataCollectionActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You choose not to participate in Microsoft Azure PowerShell data collection.. + /// + public static string DataCollectionConfirmNo { + get { + return ResourceManager.GetString("DataCollectionConfirmNo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This confirmation message will be dismissed in '{0}' second(s).... + /// + public static string DataCollectionConfirmTime { + get { + return ResourceManager.GetString("DataCollectionConfirmTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You choose to participate in Microsoft Azure PowerShell data collection.. + /// + public static string DataCollectionConfirmYes { + get { + return ResourceManager.GetString("DataCollectionConfirmYes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microsoft Azure PowerShell collects data about how users use PowerShell cmdlets and some problems they encounter. Microsoft uses this information to improve our PowerShell cmdlets. Participation is voluntary and when you choose to participate your device automatically sends information to Microsoft about how you use Azure PowerShell. + /// + ///If you choose to participate, you can stop at any time by using Azure PowerShell as follows: + ///1. Use the Disable-AzureDataCollection cmdlet to turn the feature Off. The [rest of string was truncated]";. + /// + public static string DataCollectionPrompt { + get { + return ResourceManager.GetString("DataCollectionPrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The setting profile has been saved to the following path '{0}'.. + /// + public static string DataCollectionSaveFileInformation { + get { + return ResourceManager.GetString("DataCollectionSaveFileInformation", resourceCulture); + } + } + /// /// Looks up a localized string similar to Setting: {0} as the default and current subscription. To view other subscriptions use Get-AzureSubscription. /// diff --git a/src/Common/Commands.Common/Properties/Resources.resx b/src/Common/Commands.Common/Properties/Resources.resx index 6632412a642f..98ebeec2c58d 100644 --- a/src/Common/Commands.Common/Properties/Resources.resx +++ b/src/Common/Commands.Common/Properties/Resources.resx @@ -1468,4 +1468,32 @@ The file needs to be a PowerShell script (.ps1 or .psm1). Cannot change built-in environment {0}. + + Microsoft Azure PowerShell collects data about how users use PowerShell cmdlets and some problems they encounter. Microsoft uses this information to improve our PowerShell cmdlets. Participation is voluntary and when you choose to participate your device automatically sends information to Microsoft about how you use Azure PowerShell. + +If you choose to participate, you can stop at any time by using Azure PowerShell as follows: +1. Use the Disable-AzureDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureResourceManager module +To disable data collection: PS > Disable-AzureDataCollection + +If you choose to not participate, you can enable at any time by using Azure PowerShell as follows: +1. Use the Enable-AzureDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureResourceManager module +To enable data collection: PS > Enable-AzureDataCollection + +Select Y to enable data collection [Y/N]: + + + Microsoft Azure PowerShell Data Collection Confirmation + + + You choose not to participate in Microsoft Azure PowerShell data collection. + + + This confirmation message will be dismissed in '{0}' second(s)... + + + You choose to participate in Microsoft Azure PowerShell data collection. + + + The setting profile has been saved to the following path '{0}'. + \ No newline at end of file diff --git a/src/Common/Commands.Profile/Commands.Profile.csproj b/src/Common/Commands.Profile/Commands.Profile.csproj index f40f5ff69182..4e0123d03876 100644 --- a/src/Common/Commands.Profile/Commands.Profile.csproj +++ b/src/Common/Commands.Profile/Commands.Profile.csproj @@ -140,6 +140,8 @@ + + diff --git a/src/Common/Commands.Profile/DataCollection/DisableAzureDataCollection.cs b/src/Common/Commands.Profile/DataCollection/DisableAzureDataCollection.cs new file mode 100644 index 000000000000..b859bf6e7b77 --- /dev/null +++ b/src/Common/Commands.Profile/DataCollection/DisableAzureDataCollection.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Utilities.Common; +using System.Management.Automation; +using System.Security.Permissions; + +namespace Microsoft.WindowsAzure.Commands.Profile +{ + [Cmdlet(VerbsLifecycle.Disable, "AzureDataCollection")] + public class DisableAzureDataCollectionCommand : EnableAzureDataCollectionCommand + { + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + SetDataCollectionProfile(false); + } + } +} diff --git a/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs b/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs new file mode 100644 index 000000000000..f9c668121e9e --- /dev/null +++ b/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Utilities.Common; +using System.Management.Automation; +using System.Security.Permissions; + +namespace Microsoft.WindowsAzure.Commands.Profile +{ + [Cmdlet(VerbsLifecycle.Enable, "AzureDataCollection")] + public class EnableAzureDataCollectionCommand : AzurePSCmdlet + { + [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] + public override void ExecuteCmdlet() + { + SetDataCollectionProfile(true); + } + + protected void SetDataCollectionProfile(bool enable) + { + var profile = GetDataCollectionProfile(); + profile.EnableAzureDataCollection = enable; + SaveDataCollectionProfile(); + } + } +} From f9f8250a3525157eb522007fe55e9f6efa11f94b Mon Sep 17 00:00:00 2001 From: huangpf Date: Thu, 3 Sep 2015 18:15:03 -0700 Subject: [PATCH 35/58] Change file suffix --- src/AzurePowershell.sln | 5 ++++- src/Common/Commands.Common/AzurePSDataCollectionProfile.cs | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/AzurePowershell.sln b/src/AzurePowershell.sln index afe5a4118fc3..4cd19eb024ae 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.30723.0 +VisualStudioVersion = 12.0.40629.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8531411A-0137-4E27-9C5E-49E07C245048}" ProjectSection(SolutionItems) = preProject @@ -632,4 +632,7 @@ Global {678AE95D-2364-47D7-888C-3FFA6D412CC8} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {6C7D3D81-37AB-445E-8081-78A1FEC0A773} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EnterpriseLibraryConfigurationToolBinariesPathV6 = packages\EnterpriseLibrary.TransientFaultHandling.6.0.1304.0\lib\portable-net45+win+wp8;packages\EnterpriseLibrary.TransientFaultHandling.Data.6.0.1304.1\lib\NET45 + EndGlobalSection EndGlobal diff --git a/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs b/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs index c5b5cd429d45..cd8c9694c967 100644 --- a/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs +++ b/src/Common/Commands.Common/AzurePSDataCollectionProfile.cs @@ -22,7 +22,7 @@ namespace Microsoft.WindowsAzure.Commands.Common public class AzurePSDataCollectionProfile { public const string EnvironmentVariableName = "Azure_PS_Data_Collection"; - public static string DefaultFileName = "AzureDataCollectionProfile.dat"; + public static string DefaultFileName = "AzureDataCollectionProfile.json"; public AzurePSDataCollectionProfile() { From 8e8ab7a2059f96e23cf062a8d7d6245b1aa4393c Mon Sep 17 00:00:00 2001 From: OJDUDE Date: Thu, 3 Sep 2015 19:01:47 -0700 Subject: [PATCH 36/58] Adding file deleted by mistake. Adding the same file from the head branch --- setup/azurecmdfiles.wxi | 6359 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 6359 insertions(+) create mode 100644 setup/azurecmdfiles.wxi diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi new file mode 100644 index 000000000000..844c5a05065e --- /dev/null +++ b/setup/azurecmdfiles.wxi @@ -0,0 +1,6359 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 7c3438e93e84f0bb092d2db3875ca5bcbaa820a0 Mon Sep 17 00:00:00 2001 From: huangpf Date: Thu, 3 Sep 2015 20:37:25 -0700 Subject: [PATCH 37/58] CheckIfInteractive --- src/Common/Commands.Common/AzurePSCmdlet.cs | 2 +- src/Common/Commands.Common/GeneralUtilities.cs | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index bef5318f2100..c5d511d2f5f9 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -234,7 +234,7 @@ protected void PromptForDataCollectionProfileIfNotExists() // Initialize it from the environment variable or profile file. InitializeDataCollectionProfile(); - if (!_dataCollectionProfile.EnableAzureDataCollection.HasValue) + if (GeneralUtilities.CheckIfInteractive() && !_dataCollectionProfile.EnableAzureDataCollection.HasValue) { WriteWarning(Resources.DataCollectionPrompt); diff --git a/src/Common/Commands.Common/GeneralUtilities.cs b/src/Common/Commands.Common/GeneralUtilities.cs index 8165caf16119..bf315b9bf548 100644 --- a/src/Common/Commands.Common/GeneralUtilities.cs +++ b/src/Common/Commands.Common/GeneralUtilities.cs @@ -430,5 +430,14 @@ public static void EnsureDefaultProfileDirectoryExists() AzureSession.DataStore.CreateDirectory(AzureSession.ProfileDirectory); } } + + /// + /// Check if the PS program is run in interactive mode. + /// + public static bool CheckIfInteractive() + { + var arguments = Environment.GetCommandLineArgs(); + return arguments.Any(s => !string.Equals(s, "-noninteractive")); + } } } \ No newline at end of file From 4beead159367d9eb65bf1ad026fc5cfec41e59b8 Mon Sep 17 00:00:00 2001 From: huangpf Date: Thu, 3 Sep 2015 21:14:15 -0700 Subject: [PATCH 38/58] CheckIfInteractive --- src/Common/Commands.Common/AzurePSCmdlet.cs | 26 +++++++++++++++++-- .../Commands.Common/GeneralUtilities.cs | 9 ------- 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index c5d511d2f5f9..bd16c5f218be 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -225,6 +225,28 @@ protected void SaveDataCollectionProfile() WriteWarning(string.Format(Resources.DataCollectionSaveFileInformation, fileFullPath)); } + protected bool CheckIfInteractive() + { + bool interactive = true; + try + { + var test = this.Host.UI.RawUI.CursorSize; + } + catch (HostException ex) + { + if (ex.Message.StartsWith("A command that prompts the user failed")) + { + interactive = false; + } + else + { + throw ex; + } + } + + return interactive; + } + /// /// Prompt for the current data collection profile /// @@ -234,7 +256,7 @@ protected void PromptForDataCollectionProfileIfNotExists() // Initialize it from the environment variable or profile file. InitializeDataCollectionProfile(); - if (GeneralUtilities.CheckIfInteractive() && !_dataCollectionProfile.EnableAzureDataCollection.HasValue) + if (CheckIfInteractive() && !_dataCollectionProfile.EnableAzureDataCollection.HasValue) { WriteWarning(Resources.DataCollectionPrompt); @@ -259,7 +281,7 @@ protected void PromptForDataCollectionProfileIfNotExists() bool enabled = false; if (this.Host.UI.RawUI.KeyAvailable) { - KeyInfo keyInfo = this.Host.UI.RawUI.ReadKey(ReadKeyOptions.NoEcho); + KeyInfo keyInfo = this.Host.UI.RawUI.ReadKey(ReadKeyOptions.NoEcho | ReadKeyOptions.AllowCtrlC | ReadKeyOptions.IncludeKeyDown); enabled = (keyInfo.Character == 'Y' || keyInfo.Character == 'y'); } diff --git a/src/Common/Commands.Common/GeneralUtilities.cs b/src/Common/Commands.Common/GeneralUtilities.cs index bf315b9bf548..8165caf16119 100644 --- a/src/Common/Commands.Common/GeneralUtilities.cs +++ b/src/Common/Commands.Common/GeneralUtilities.cs @@ -430,14 +430,5 @@ public static void EnsureDefaultProfileDirectoryExists() AzureSession.DataStore.CreateDirectory(AzureSession.ProfileDirectory); } } - - /// - /// Check if the PS program is run in interactive mode. - /// - public static bool CheckIfInteractive() - { - var arguments = Environment.GetCommandLineArgs(); - return arguments.Any(s => !string.Equals(s, "-noninteractive")); - } } } \ No newline at end of file From 41e4c7e18fa684611a2ee909b4189e2772c6d21c Mon Sep 17 00:00:00 2001 From: huangpf Date: Fri, 4 Sep 2015 00:03:55 -0700 Subject: [PATCH 39/58] Fix Tests --- src/Common/Commands.Common/AzurePSCmdlet.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index bd16c5f218be..ed00e2e32a4c 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -227,10 +227,15 @@ protected void SaveDataCollectionProfile() protected bool CheckIfInteractive() { + if (this.Host == null || this.Host.UI == null || this.Host.UI.RawUI == null) + { + return false; + } + bool interactive = true; try { - var test = this.Host.UI.RawUI.CursorSize; + var test = this.Host.UI.RawUI.KeyAvailable; } catch (HostException ex) { @@ -298,9 +303,9 @@ protected void PromptForDataCollectionProfileIfNotExists() /// protected override void BeginProcessing() { + InitializeProfile(); PromptForDataCollectionProfileIfNotExists(); - InitializeProfile(); if (string.IsNullOrEmpty(ParameterSetName)) { WriteDebugWithTimestamp(string.Format(Resources.BeginProcessingWithoutParameterSetLog, this.GetType().Name)); From 48edc245eff0c477f9dd6147ed6f34d46c677643 Mon Sep 17 00:00:00 2001 From: huangpf Date: Fri, 4 Sep 2015 10:18:37 -0700 Subject: [PATCH 40/58] Tests --- .../Commands.ScenarioTest.csproj | 3 + .../ServiceManagementTests.ps1 | 20 +- .../ServiceManagement/ScenarioTests.cs | 9 + ...unEnableAndDisableDataCollectionTests.json | 2478 +++++++++++++++++ 4 files changed, 2509 insertions(+), 1 deletion(-) create mode 100644 src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunEnableAndDisableDataCollectionTests.json diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index 4d6f265b39e5..fd2c49733f42 100644 --- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -236,6 +236,9 @@ Always + + Always + Always diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 index 7974ea8c0f7f..5523f1a0b989 100644 --- a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 +++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 @@ -590,4 +590,22 @@ function Run-ServiceDeploymentExtensionCmdletTests # Cleanup Cleanup-CloudService $svcName; } -} \ No newline at end of file +} + +# Run Data Collection Cmdlet Tests +function Run-EnableAndDisableDataCollectionTests +{ + $st = Enable-AzureDataCollection; + + $locations = Get-AzureLocation; + foreach ($loc in $locations) + { + $svcName = getAssetName; + $st = New-AzureService -ServiceName $svcName -Location $loc.Name; + + # Cleanup + Cleanup-CloudService $svcName + } + + $st = Disable-AzureDataCollection; +} diff --git a/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs b/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs index 1af092da3d8a..4118c51f2f6d 100644 --- a/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs +++ b/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs @@ -125,5 +125,14 @@ public void RunServiceDeploymentExtensionCmdletTests() { this.RunPowerShellTest("Run-ServiceDeploymentExtensionCmdletTests"); } + + [Fact] + [Trait(Category.Service, Category.ServiceManagement)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] + public void RunEnableAndDisableDataCollectionTests() + { + this.RunPowerShellTest("Run-EnableAndDisableDataCollectionTests"); + } } } diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunEnableAndDisableDataCollectionTests.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunEnableAndDisableDataCollectionTests.json new file mode 100644 index 000000000000..01e0e7fda838 --- /dev/null +++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunEnableAndDisableDataCollectionTests.json @@ -0,0 +1,2478 @@ +{ + "Entries": [ + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/locations", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9sb2NhdGlvbnM=", + "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 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 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 West US\r\n West 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 Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n Standard_GS1\r\n Standard_GS2\r\n Standard_GS3\r\n Standard_GS4\r\n Standard_GS5\r\n \r\n \r\n \r\n \r\n Premium_LRS\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_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n Standard_GS1\r\n Standard_GS2\r\n Standard_GS3\r\n Standard_GS4\r\n Standard_GS5\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 Premium_LRS\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 Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n Standard_GS1\r\n Standard_GS2\r\n Standard_GS3\r\n Standard_GS4\r\n Standard_GS5\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 Premium_LRS\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 Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\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 Premium_LRS\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": [ + "19800" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "x-ms-request-id": [ + "71ab1f9989d7050db135973ab5ad418c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:13:59 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/71ab1f9989d7050db135973ab5ad418c", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzcxYWIxZjk5ODlkNzA1MGRiMTM1OTczYWI1YWQ0MThj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 71ab1f99-89d7-050d-b135-973ab5ad418c\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": [ + "d557f9251cde087994b3eed103b32c0b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:00 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2384\r\n \r\n Central US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "206" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a883f826adb0c87a36fa44290e374a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:03 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk2384" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk940\r\n \r\n South Central US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "207" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3fd8475d4f8c06cd897131e0170285ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:08 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk940" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3019\r\n \r\n East US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "203" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d92b759a7ec0b989eb07a12cfc37256" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:15 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk3019" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk6356\r\n \r\n West US\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "203" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cddef3a136e40e6ab27aa02b35287bed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:18 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk6356" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk1630\r\n \r\n East US 2\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "205" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7e516525484604d892799df489cd554a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:22 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk1630" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk3615\r\n \r\n North Europe\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "208" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d8e0995f4a20ab2a6da2fa1d5d55add" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:31 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk3615" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk6186\r\n \r\n West Europe\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "207" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f7b8d451cc060c22b5cc865b82ad5c23" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:39 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk6186" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk5861\r\n \r\n Southeast Asia\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "210" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd67c52bf47e0d3f88e25cefc30525bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:47 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk5861" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==", + "RequestMethod": "POST", + "RequestBody": "\r\n onesdk2226\r\n \r\n East Asia\r\n", + "RequestHeaders": { + "Content-Type": [ + "application/xml" + ], + "Content-Length": [ + "205" + ], + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60a8db29668f045c901d6b3447de9eea" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:55 GMT" + ], + "Location": [ + "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/onesdk2226" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/0a883f826adb0c87a36fa44290e374a8", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzBhODgzZjgyNmFkYjBjODdhMzZmYTQ0MjkwZTM3NGE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0a883f82-6adb-0c87-a36f-a44290e374a8\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": [ + "623bb1d8abaa07a0ad04b54802c4e211" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:03 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMzg0P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384\r\n onesdk2384\r\n \r\n \r\n Central US\r\n \r\n Created\r\n 2015-09-04T17:14:02Z\r\n 2015-09-04T17:14:03Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce000093c347094abd9ca4e5be7bebcd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:04 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMzg0P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384\r\n onesdk2384\r\n \r\n \r\n Central US\r\n \r\n Created\r\n 2015-09-04T17:14:02Z\r\n 2015-09-04T17:14:03Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "650473cfcd7f036aace42909221b06b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:04 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMzg0P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384\r\n onesdk2384\r\n \r\n \r\n Central US\r\n \r\n Created\r\n 2015-09-04T17:14:02Z\r\n 2015-09-04T17:14:03Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5948f229afb609f8bea193c8bf357223" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:04 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2384", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMzg0", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "18b26042951c0d01a05aeb0ceb8766c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:07 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/3fd8475d4f8c06cd897131e0170285ce", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzNmZDg0NzVkNGY4YzA2Y2Q4OTcxMzFlMDE3MDI4NWNl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 3fd8475d-4f8c-06cd-8971-31e0170285ce\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": [ + "d1dd79f00e9c0647926a3002c15a1691" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:09 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs5NDA/ZW1iZWQtZGV0YWlsPXRydWU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940\r\n onesdk940\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n 2015-09-04T17:14:08Z\r\n 2015-09-04T17:14:08Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dab6c8c279a60d538e494047047a28fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:10 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs5NDA/ZW1iZWQtZGV0YWlsPXRydWU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940\r\n onesdk940\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n 2015-09-04T17:14:08Z\r\n 2015-09-04T17:14:08Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8616ec7aee6b0b0ea6c9a8c979239a76" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:10 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs5NDA/ZW1iZWQtZGV0YWlsPXRydWU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940\r\n onesdk940\r\n \r\n \r\n South Central US\r\n \r\n Created\r\n 2015-09-04T17:14:08Z\r\n 2015-09-04T17:14:08Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bbfcd69cf8b80cf9ab07b96fbb2e7d86" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:11 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk940", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs5NDA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0057ade11de7069092ecc7d3b2c20db3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:13 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/6d92b759a7ec0b989eb07a12cfc37256", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzZkOTJiNzU5YTdlYzBiOTg5ZWIwN2ExMmNmYzM3MjU2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 6d92b759-a7ec-0b98-9eb0-7a12cfc37256\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": [ + "66bc28b9968a0851a35c11c9a8ca4452" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:15 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMDE5P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019\r\n onesdk3019\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-09-04T17:14:14Z\r\n 2015-09-04T17:14:14Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bf7c0cd2792f098693b2878e0eb42d25" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:15 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMDE5P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019\r\n onesdk3019\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-09-04T17:14:14Z\r\n 2015-09-04T17:14:14Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3546d9fbe5d50fada9718afc6d5bcd3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:16 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMDE5P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019\r\n onesdk3019\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-09-04T17:14:14Z\r\n 2015-09-04T17:14:14Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b7829d08df1603c69c28fc4233b3c93b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:16 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3019", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszMDE5", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "49a706d3d27a0137aa1cbd29bc400810" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:17 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/cddef3a136e40e6ab27aa02b35287bed", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2NkZGVmM2ExMzZlNDBlNmFiMjdhYTAyYjM1Mjg3YmVk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n cddef3a1-36e4-0e6a-b27a-a02b35287bed\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": [ + "0220e4084f310f9dbbb2b5db13d0a5ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:19 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MzU2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356\r\n onesdk6356\r\n \r\n \r\n West US\r\n \r\n Created\r\n 2015-09-04T17:14:18Z\r\n 2015-09-04T17:14:18Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c4777b053b502f2af41bb11f688bd0b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:20 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MzU2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356\r\n onesdk6356\r\n \r\n \r\n West US\r\n \r\n Created\r\n 2015-09-04T17:14:18Z\r\n 2015-09-04T17:14:18Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af2635653db20844bda16bda2ec50b71" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:20 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MzU2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356\r\n onesdk6356\r\n \r\n \r\n West US\r\n \r\n Created\r\n 2015-09-04T17:14:18Z\r\n 2015-09-04T17:14:18Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b6fbc875c4f0684918e7f706e9686f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:20 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6356", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MzU2", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cec70998cb570b93863b564e7e2919a5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:21 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7e516525484604d892799df489cd554a", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzdlNTE2NTI1NDg0NjA0ZDg5Mjc5OWRmNDg5Y2Q1NTRh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 7e516525-4846-04d8-9279-9df489cd554a\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": [ + "42db0edcc3e70ab993ced833a9b478d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:27 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxNjMwP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630\r\n onesdk1630\r\n \r\n \r\n East US 2\r\n \r\n Created\r\n 2015-09-04T17:14:23Z\r\n 2015-09-04T17:14:24Z\r\n \r\n \r\n ResourceGroup\r\n onesdk1630\r\n \r\n \r\n ResourceLocation\r\n East US 2\r\n \r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "788" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "378042cea1210260ae6dd2c7a5c60c38" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:28 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxNjMwP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630\r\n onesdk1630\r\n \r\n \r\n East US 2\r\n \r\n Created\r\n 2015-09-04T17:14:23Z\r\n 2015-09-04T17:14:24Z\r\n \r\n \r\n ResourceGroup\r\n onesdk1630\r\n \r\n \r\n ResourceLocation\r\n East US 2\r\n \r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "788" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e463079a05a009e951e2f937b818a6b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:28 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxNjMwP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630\r\n onesdk1630\r\n \r\n \r\n East US 2\r\n \r\n Created\r\n 2015-09-04T17:14:23Z\r\n 2015-09-04T17:14:24Z\r\n \r\n \r\n ResourceGroup\r\n onesdk1630\r\n \r\n \r\n ResourceLocation\r\n East US 2\r\n \r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "788" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be8c62f07e680cf0a8871e1ee4374d73" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:29 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk1630", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsxNjMw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff81ed08755a04669789cd8cb5dbc2af" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:30 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/0d8e0995f4a20ab2a6da2fa1d5d55add", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzBkOGUwOTk1ZjRhMjBhYjJhNmRhMmZhMWQ1ZDU1YWRk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 0d8e0995-f4a2-0ab2-a6da-2fa1d5d55add\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": [ + "f522781abb18048abed01543bb8dc343" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:31 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszNjE1P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615\r\n onesdk3615\r\n \r\n \r\n North Europe\r\n \r\n Created\r\n 2015-09-04T17:14:32Z\r\n 2015-09-04T17:14:31Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be459da5e69207e58509f5f61afb331e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:33 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszNjE1P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615\r\n onesdk3615\r\n \r\n \r\n North Europe\r\n \r\n Created\r\n 2015-09-04T17:14:32Z\r\n 2015-09-04T17:14:31Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c93b852aac60ab0a9e2cbde6c3edafb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:33 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszNjE1P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615\r\n onesdk3615\r\n \r\n \r\n North Europe\r\n \r\n Created\r\n 2015-09-04T17:14:32Z\r\n 2015-09-04T17:14:31Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78055f1a493000de9186b85173fe41e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:33 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk3615", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGszNjE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "195dacb65e2c0708bd795f4af4917ca4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:37 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/f7b8d451cc060c22b5cc865b82ad5c23", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Y3YjhkNDUxY2MwNjBjMjJiNWNjODY1YjgyYWQ1YzIz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n f7b8d451-cc06-0c22-b5cc-865b82ad5c23\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": [ + "ac0f5435614c099582d163c89923bf2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:40 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MTg2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186\r\n onesdk6186\r\n \r\n \r\n West Europe\r\n \r\n Created\r\n 2015-09-04T17:14:39Z\r\n 2015-09-04T17:14:39Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f3339f205270dfd85b4208e4f8ff9e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:41 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MTg2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186\r\n onesdk6186\r\n \r\n \r\n West Europe\r\n \r\n Created\r\n 2015-09-04T17:14:39Z\r\n 2015-09-04T17:14:39Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4278fc03c13b0a7cb0b9dbb0a7397568" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:42 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MTg2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186\r\n onesdk6186\r\n \r\n \r\n West Europe\r\n \r\n Created\r\n 2015-09-04T17:14:39Z\r\n 2015-09-04T17:14:42Z\r\n \r\n \r\n ResourceGroup\r\n onesdk6186\r\n \r\n \r\n ResourceLocation\r\n West Europe\r\n \r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "792" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d4294038ee3073d93d6a2a247462eb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:42 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk6186", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs2MTg2", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "09b96ee4e5fa008d806d97c86298dd14" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:44 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/cd67c52bf47e0d3f88e25cefc30525bb", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2NkNjdjNTJiZjQ3ZTBkM2Y4OGUyNWNlZmMzMDUyNWJi", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n cd67c52b-f47e-0d3f-88e2-5cefc30525bb\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": [ + "5662cdc4ff090c559bac5195b7639ffa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:48 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1ODYxP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861\r\n onesdk5861\r\n \r\n \r\n Southeast Asia\r\n \r\n Created\r\n 2015-09-04T17:14:45Z\r\n 2015-09-04T17:14:47Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "595" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee735bc8fddb086d9ec5e20371484ef6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:48 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1ODYxP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861\r\n onesdk5861\r\n \r\n \r\n Southeast Asia\r\n \r\n Created\r\n 2015-09-04T17:14:45Z\r\n 2015-09-04T17:14:47Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "595" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "685aa37f01460c459e0ba4179698bf5b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:50 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1ODYxP2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861\r\n onesdk5861\r\n \r\n \r\n Southeast Asia\r\n \r\n Created\r\n 2015-09-04T17:14:45Z\r\n 2015-09-04T17:14:47Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "595" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "531570e6c9700a38938650d1cba8277b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:50 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk5861", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGs1ODYx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed19094ca2ae0f87a4b86d246b52a957" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:53 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/60a8db29668f045c901d6b3447de9eea", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzYwYThkYjI5NjY4ZjA0NWM5MDFkNmIzNDQ3ZGU5ZWVh", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-10-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0" + ] + }, + "ResponseBody": "\r\n 60a8db29-668f-045c-901d-6b3447de9eea\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": [ + "43038c4e61080115a1a3c4f016f45653" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:54 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMjI2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226\r\n onesdk2226\r\n \r\n \r\n East Asia\r\n \r\n Created\r\n 2015-09-04T17:14:54Z\r\n 2015-09-04T17:14:54Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d4c50b76a260962b5a53f278909511e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:55 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMjI2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226\r\n onesdk2226\r\n \r\n \r\n East Asia\r\n \r\n Created\r\n 2015-09-04T17:14:54Z\r\n 2015-09-04T17:14:54Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "442b1c56924c06bdb37770f12b4e8e39" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:56 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226?embed-detail=true", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMjI2P2VtYmVkLWRldGFpbD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226\r\n onesdk2226\r\n \r\n \r\n East Asia\r\n \r\n Created\r\n 2015-09-04T17:14:54Z\r\n 2015-09-04T17:14:54Z\r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e40f5e4002b0559a1b9229f8bb5b892" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:56 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/onesdk2226", + "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vbmVzZGsyMjI2", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-04-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-servedbyregion": [ + "ussouth3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3427043c709a076887e90bd92893c916" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 04 Sep 2015 17:14:57 GMT" + ], + "Server": [ + "1.0.6198.260", + "(rd_rdfe_stable.150831-1512)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "": [ + "onesdk2384", + "onesdk940", + "onesdk3019", + "onesdk6356", + "onesdk1630", + "onesdk3615", + "onesdk6186", + "onesdk5861", + "onesdk2226" + ] + }, + "Variables": { + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e" + } +} \ No newline at end of file From 7360d6bde27b5e7c45f8a60211547f7f98f164a8 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Tue, 14 Jul 2015 18:51:09 -0700 Subject: [PATCH 41/58] Add usage log in metric helper --- .../ApplicationInsights.config | 17 +++ src/Common/Commands.Common/AzurePSCmdlet.cs | 46 ++++++- .../Commands.Common/Commands.Common.csproj | 9 ++ src/Common/Commands.Common/MetricHelper.cs | 117 ++++++++++++++++++ src/Common/Commands.Common/packages.config | 1 + .../Common/ComputeClientBaseCmdlet.cs | 5 + .../Config/NewAzureVMConfigCommand.cs | 5 + 7 files changed, 199 insertions(+), 1 deletion(-) create mode 100644 src/Common/Commands.Common/ApplicationInsights.config create mode 100644 src/Common/Commands.Common/MetricHelper.cs diff --git a/src/Common/Commands.Common/ApplicationInsights.config b/src/Common/Commands.Common/ApplicationInsights.config new file mode 100644 index 000000000000..c48519d12f41 --- /dev/null +++ b/src/Common/Commands.Common/ApplicationInsights.config @@ -0,0 +1,17 @@ + + + + + + + + + + + 171b81dc-a785-47a2-9e1b-d1f79b09941b + \ No newline at end of file diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index ed00e2e32a4c..f9530a56bbb8 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -35,6 +35,9 @@ public abstract class AzurePSCmdlet : PSCmdlet private DebugStreamTraceListener _adalListener; protected static AzureProfile _currentProfile = null; protected static AzurePSDataCollectionProfile _dataCollectionProfile = null; + protected virtual bool IsMetricEnabled { + get { return false; } + } [Parameter(Mandatory = false, HelpMessage = "In-memory profile.")] public AzureProfile Profile { get; set; } @@ -305,7 +308,7 @@ protected override void BeginProcessing() { InitializeProfile(); PromptForDataCollectionProfileIfNotExists(); - + LogMetricHelperUsage(); if (string.IsNullOrEmpty(ParameterSetName)) { WriteDebugWithTimestamp(string.Format(Resources.BeginProcessingWithoutParameterSetLog, this.GetType().Name)); @@ -352,6 +355,10 @@ protected override void EndProcessing() RecordingTracingInterceptor.RemoveFromContext(_httpTracingInterceptor); DebugStreamTraceListener.RemoveAdalTracing(_adalListener); FlushDebugMessages(); + if (IsMetricEnabled) + { + MetricHelper.FlushMetric(); + } base.EndProcessing(); } @@ -379,6 +386,7 @@ protected bool IsVerbose() public new void WriteError(ErrorRecord errorRecord) { FlushDebugMessages(); + LogMetricHelperErrorEvent(errorRecord); base.WriteError(errorRecord); } @@ -506,6 +514,42 @@ private void FlushDebugMessages() } } + protected void LogMetricHelperUsage() + { + if (!IsMetricEnabled) + { + return; + } + + try + { + MetricHelper.LogUsageEvent(this.Profile.DefaultSubscription.Id.ToString(), this.GetType().Name); + } + catch (Exception e) + { + //Swallow error from Application Insights event collection. + WriteErrorWithTimestamp(e.ToString()); + } + } + + protected void LogMetricHelperErrorEvent(ErrorRecord er) + { + if (!IsMetricEnabled) + { + return; + } + + try + { + MetricHelper.LogErrorEvent(er, this.Profile.DefaultSubscription.Id.ToString(), this.GetType().Name); + } + catch (Exception e) + { + //Swallow error from Application Insights event collection. + WriteErrorWithTimestamp(e.ToString()); + } + } + /// /// Asks for confirmation before executing the action. /// diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index b908e8a2341a..5c6ed10a509b 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -15,6 +15,7 @@ ..\..\ true /assemblyCompareMode:StrongNameIgnoringVersion + 06e19c11 true @@ -54,6 +55,10 @@ False ..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll + + ..\..\packages\Microsoft.ApplicationInsights.1.1.1-beta\lib\net45\Microsoft.ApplicationInsights.dll + True + False ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll @@ -147,6 +152,7 @@ True Resources.resx + @@ -184,6 +190,9 @@ + + Always + Designer diff --git a/src/Common/Commands.Common/MetricHelper.cs b/src/Common/Commands.Common/MetricHelper.cs new file mode 100644 index 000000000000..b5bb09f2ad1c --- /dev/null +++ b/src/Common/Commands.Common/MetricHelper.cs @@ -0,0 +1,117 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Security.Cryptography; +using System.Text; +using System.Threading.Tasks; +using Microsoft.ApplicationInsights; +using Microsoft.ApplicationInsights.Channel; +using Microsoft.ApplicationInsights.DataContracts; +using Microsoft.ApplicationInsights.Extensibility; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.WindowsAzure.Commands.Common +{ + public static class MetricHelper + { + private static readonly TelemetryClient TelemetryClient; + + static MetricHelper() + { + TelemetryClient = new TelemetryClient(); + + if (!IsMetricTermAccepted()) + { + TelemetryConfiguration.Active.DisableTelemetry = true; + } + + if (TestMockSupport.RunningMocked) + { + //TODO enable in final cr + //TelemetryConfiguration.Active.DisableTelemetry = true; + //TelemetryConfiguration.Active.TelemetryChannel.DeveloperMode = true; + } + } + + public static void LogUsageEvent(string subscriptionId, string cmdletName) + { + if (!IsMetricTermAccepted()) + { + return; + } + + var tcEvent = new EventTelemetry("CmdletUsage"); + + tcEvent.Context.User.Id = GenerateSha256HashString(subscriptionId); + tcEvent.Context.User.UserAgent = AzurePowerShell.UserAgentValue.ToString(); + tcEvent.Properties.Add("CmdletType", cmdletName); + + TelemetryClient.TrackEvent(tcEvent); + } + + public static void LogErrorEvent(ErrorRecord err, string subscriptionId, string cmdletName) + { + if (!IsMetricTermAccepted()) + { + return; + } + + var tcEvent = new EventTelemetry("CmdletError"); + tcEvent.Properties.Add("ExceptionType", err.Exception.GetType().FullName); + if (err.Exception.InnerException != null) + { + tcEvent.Properties.Add("InnerExceptionType", err.Exception.InnerException.GetType().FullName); + } + + tcEvent.Context.User.Id = GenerateSha256HashString(subscriptionId); + tcEvent.Context.User.UserAgent = AzurePowerShell.UserAgentValue.ToString(); + tcEvent.Properties.Add("CmdletType", cmdletName); + + TelemetryClient.TrackEvent(tcEvent); + } + + public static bool IsMetricTermAccepted() + { + //TODO check the config/preference + return true; + } + + public static void FlushMetric() + { + if (!IsMetricTermAccepted()) + { + return; + } + + var t = Task.Run(() => FlushAi()); + //TelemetryClient.Flush(); + } + + private static void FlushAi() + { + try + { + TelemetryClient.Flush(); + + //return Task.FromResult(default(object)); + } + catch + { + // ignored + } + } + + /// + /// Gereate a SHA256 Hash string from the originInput. + /// + /// + /// + public static string GenerateSha256HashString(string originInput) + { + SHA256 sha256 = SHA256.Create(); + var bytes = sha256.ComputeHash(Encoding.UTF8.GetBytes(originInput)); + return Encoding.UTF8.GetString(bytes); + } + } +} diff --git a/src/Common/Commands.Common/packages.config b/src/Common/Commands.Common/packages.config index abdfbbed145e..90ec260fe139 100644 --- a/src/Common/Commands.Common/packages.config +++ b/src/Common/Commands.Common/packages.config @@ -1,6 +1,7 @@  + diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs index d26840fadf17..c275bd153627 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs @@ -23,6 +23,11 @@ public abstract class ComputeClientBaseCmdlet : AzurePSCmdlet { protected const string VirtualMachineExtensionType = "Microsoft.Compute/virtualMachines/extensions"; + protected override bool IsMetricEnabled + { + get { return true; } + } + private ComputeClient computeClient; public ComputeClient ComputeClient diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs index 2f88fa1fd386..8a1b456e9505 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs @@ -51,6 +51,11 @@ public class NewAzureVMConfigCommand : AzurePSCmdlet [ValidateNotNullOrEmpty] public string AvailabilitySetId { get; set; } + protected override bool IsMetricEnabled + { + get { return true; } + } + public override void ExecuteCmdlet() { var vm = new PSVirtualMachine From 7b3ac7d08118e054f43d82841b77e03cca7e8050 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Thu, 16 Jul 2015 18:06:01 -0700 Subject: [PATCH 42/58] Add AzureQoSEvent --- src/Common/Commands.Common/AzurePSCmdlet.cs | 46 ++++----- src/Common/Commands.Common/MetricHelper.cs | 93 ++++++++++++++----- .../Common/ComputeClientBaseCmdlet.cs | 13 +-- 3 files changed, 98 insertions(+), 54 deletions(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index f9530a56bbb8..e8e30c59fbe7 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -35,6 +35,9 @@ public abstract class AzurePSCmdlet : PSCmdlet private DebugStreamTraceListener _adalListener; protected static AzureProfile _currentProfile = null; protected static AzurePSDataCollectionProfile _dataCollectionProfile = null; + + protected AzurePSQoSEvent QosEvent; + protected virtual bool IsMetricEnabled { get { return false; } } @@ -308,7 +311,7 @@ protected override void BeginProcessing() { InitializeProfile(); PromptForDataCollectionProfileIfNotExists(); - LogMetricHelperUsage(); + InitializeQosEvent(); if (string.IsNullOrEmpty(ParameterSetName)) { WriteDebugWithTimestamp(string.Format(Resources.BeginProcessingWithoutParameterSetLog, this.GetType().Name)); @@ -349,16 +352,13 @@ protected virtual void InitializeProfile() /// protected override void EndProcessing() { + LogQosEvent(); string message = string.Format(Resources.EndProcessingLog, this.GetType().Name); WriteDebugWithTimestamp(message); RecordingTracingInterceptor.RemoveFromContext(_httpTracingInterceptor); DebugStreamTraceListener.RemoveAdalTracing(_adalListener); FlushDebugMessages(); - if (IsMetricEnabled) - { - MetricHelper.FlushMetric(); - } base.EndProcessing(); } @@ -386,7 +386,9 @@ protected bool IsVerbose() public new void WriteError(ErrorRecord errorRecord) { FlushDebugMessages(); - LogMetricHelperErrorEvent(errorRecord); + QosEvent.Exception = errorRecord.Exception; + QosEvent.IsSuccess = false; + LogQosEvent(true); base.WriteError(errorRecord); } @@ -514,26 +516,23 @@ private void FlushDebugMessages() } } - protected void LogMetricHelperUsage() + protected void InitializeQosEvent() { - if (!IsMetricEnabled) - { - return; - } - - try + QosEvent = new AzurePSQoSEvent() { - MetricHelper.LogUsageEvent(this.Profile.DefaultSubscription.Id.ToString(), this.GetType().Name); - } - catch (Exception e) - { - //Swallow error from Application Insights event collection. - WriteErrorWithTimestamp(e.ToString()); - } + CmdletType = this.GetType().Name, + IsSuccess = true, + UID = MetricHelper.GenerateSha256HashString(this.Profile.DefaultSubscription.Id.ToString()) + }; } - protected void LogMetricHelperErrorEvent(ErrorRecord er) + /// + /// Invoke this method when the cmdlet is completed or terminated. + /// + protected void LogQosEvent(bool waitForMetricSending = false) { + QosEvent.FinishQosEvent(); + WriteVerbose(QosEvent.ToString()); if (!IsMetricEnabled) { return; @@ -541,7 +540,8 @@ protected void LogMetricHelperErrorEvent(ErrorRecord er) try { - MetricHelper.LogErrorEvent(er, this.Profile.DefaultSubscription.Id.ToString(), this.GetType().Name); + MetricHelper.LogUsageEvent(QosEvent); + MetricHelper.FlushMetric(waitForMetricSending); } catch (Exception e) { @@ -560,10 +560,12 @@ protected void LogMetricHelperErrorEvent(ErrorRecord er) /// The action code protected void ConfirmAction(bool force, string actionMessage, string processMessage, string target, Action action) { + QosEvent.PauseQoSTimer(); if (force || ShouldContinue(actionMessage, "")) { if (ShouldProcess(target, processMessage)) { + QosEvent.ResumeQosTimer(); action(); } } diff --git a/src/Common/Commands.Common/MetricHelper.cs b/src/Common/Commands.Common/MetricHelper.cs index b5bb09f2ad1c..d5376fc9acd4 100644 --- a/src/Common/Commands.Common/MetricHelper.cs +++ b/src/Common/Commands.Common/MetricHelper.cs @@ -1,5 +1,8 @@ using System; using System.Collections.Generic; +using System.Diagnostics; +using System.Diagnostics.Eventing.Reader; +using System.Globalization; using System.Linq; using System.Management.Automation; using System.Security.Cryptography; @@ -20,6 +23,7 @@ public static class MetricHelper static MetricHelper() { TelemetryClient = new TelemetryClient(); + TelemetryClient.Context.Location.Ip = "0.0.0.0"; if (!IsMetricTermAccepted()) { @@ -30,11 +34,10 @@ static MetricHelper() { //TODO enable in final cr //TelemetryConfiguration.Active.DisableTelemetry = true; - //TelemetryConfiguration.Active.TelemetryChannel.DeveloperMode = true; } } - public static void LogUsageEvent(string subscriptionId, string cmdletName) + public static void LogUsageEvent(AzurePSQoSEvent qos) { if (!IsMetricTermAccepted()) { @@ -42,31 +45,33 @@ public static void LogUsageEvent(string subscriptionId, string cmdletName) } var tcEvent = new EventTelemetry("CmdletUsage"); - - tcEvent.Context.User.Id = GenerateSha256HashString(subscriptionId); + //tcEvent.Context.Location.Ip = "0.0.0.0"; + tcEvent.Context.User.Id = qos.UID; tcEvent.Context.User.UserAgent = AzurePowerShell.UserAgentValue.ToString(); - tcEvent.Properties.Add("CmdletType", cmdletName); + tcEvent.Properties.Add("CmdletType", qos.CmdletType); + tcEvent.Properties.Add("IsSuccess", qos.IsSuccess.ToString()); + tcEvent.Properties.Add("Duration", qos.Duration.TotalSeconds.ToString(CultureInfo.InvariantCulture)); TelemetryClient.TrackEvent(tcEvent); - } - public static void LogErrorEvent(ErrorRecord err, string subscriptionId, string cmdletName) - { - if (!IsMetricTermAccepted()) + if (qos.Exception != null) { - return; + LogExceptionEvent(qos); } + } + + private static void LogExceptionEvent(AzurePSQoSEvent qos) + { var tcEvent = new EventTelemetry("CmdletError"); - tcEvent.Properties.Add("ExceptionType", err.Exception.GetType().FullName); - if (err.Exception.InnerException != null) + tcEvent.Properties.Add("ExceptionType", qos.Exception.GetType().FullName); + if (qos.Exception.InnerException != null) { - tcEvent.Properties.Add("InnerExceptionType", err.Exception.InnerException.GetType().FullName); + tcEvent.Properties.Add("InnerExceptionType", qos.Exception.InnerException.GetType().FullName); } - - tcEvent.Context.User.Id = GenerateSha256HashString(subscriptionId); - tcEvent.Context.User.UserAgent = AzurePowerShell.UserAgentValue.ToString(); - tcEvent.Properties.Add("CmdletType", cmdletName); + + tcEvent.Context.User.Id = qos.UID; + tcEvent.Properties.Add("CmdletType", qos.CmdletType); TelemetryClient.TrackEvent(tcEvent); } @@ -77,15 +82,21 @@ public static bool IsMetricTermAccepted() return true; } - public static void FlushMetric() + public static void FlushMetric(bool waitForMetricSending) { if (!IsMetricTermAccepted()) { return; } - var t = Task.Run(() => FlushAi()); - //TelemetryClient.Flush(); + if (waitForMetricSending) + { + FlushAi(); + } + else + { + Task.Run(() => FlushAi()); + } } private static void FlushAi() @@ -93,8 +104,6 @@ private static void FlushAi() try { TelemetryClient.Flush(); - - //return Task.FromResult(default(object)); } catch { @@ -115,3 +124,43 @@ public static string GenerateSha256HashString(string originInput) } } } + +public class AzurePSQoSEvent +{ + private readonly Stopwatch _timer; + + public TimeSpan Duration { get; set; } + public bool IsSuccess { get; set; } + public string CmdletType { get; set; } + public Exception Exception { get; set; } + public string UID { get; set; } + + public AzurePSQoSEvent() + { + _timer = new Stopwatch(); + _timer.Start(); + } + + public void PauseQoSTimer() + { + _timer.Stop(); + } + + public void ResumeQosTimer() + { + _timer.Start(); + } + + public void FinishQosEvent() + { + _timer.Stop(); + Duration = _timer.Elapsed; + } + + public override string ToString() + { + return string.Format( + "AzureQoSEvent: CmdletType - {0}; IsSuccess - {1}; Duration - {2}; Exception - {3};", + CmdletType, IsSuccess, Duration, Exception); + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs index c275bd153627..4fa98a51c09a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs @@ -59,18 +59,11 @@ protected void ExecuteClientAction(Action action) { try { - try - { - action(); - } - catch (CloudException ex) - { - throw new ComputeCloudException(ex); - } + action(); } - catch (Exception ex) + catch (CloudException ex) { - WriteExceptionError(ex); + throw new ComputeCloudException(ex); } } } From f2fb7466ca571f50b9de0b580e0461f66c5d9bf2 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Fri, 17 Jul 2015 11:34:16 -0700 Subject: [PATCH 43/58] Switch to internal test account and enable IP metrics for now --- src/Common/Commands.Common/ApplicationInsights.config | 2 +- src/Common/Commands.Common/MetricHelper.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/Commands.Common/ApplicationInsights.config b/src/Common/Commands.Common/ApplicationInsights.config index c48519d12f41..15cacdfe4131 100644 --- a/src/Common/Commands.Common/ApplicationInsights.config +++ b/src/Common/Commands.Common/ApplicationInsights.config @@ -13,5 +13,5 @@ - 171b81dc-a785-47a2-9e1b-d1f79b09941b + ce08abab-065a-4af8-a997-fdd4cd5481b4 \ No newline at end of file diff --git a/src/Common/Commands.Common/MetricHelper.cs b/src/Common/Commands.Common/MetricHelper.cs index d5376fc9acd4..32f08c4fae92 100644 --- a/src/Common/Commands.Common/MetricHelper.cs +++ b/src/Common/Commands.Common/MetricHelper.cs @@ -23,7 +23,7 @@ public static class MetricHelper static MetricHelper() { TelemetryClient = new TelemetryClient(); - TelemetryClient.Context.Location.Ip = "0.0.0.0"; + //TelemetryClient.Context.Location.Ip = "0.0.0.0"; if (!IsMetricTermAccepted()) { From 841eee49ebd4cbc8bb54c14b2ef6db5e420814f5 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Wed, 22 Jul 2015 14:10:53 -0700 Subject: [PATCH 44/58] Split usage/err enable flag --- .../ApplicationInsights.config | 17 -------- src/Common/Commands.Common/AzurePSCmdlet.cs | 16 ++++--- .../Commands.Common/Commands.Common.csproj | 3 -- src/Common/Commands.Common/MetricHelper.cs | 43 +++++++++++-------- .../Common/ComputeClientBaseCmdlet.cs | 2 +- .../Config/NewAzureVMConfigCommand.cs | 2 +- 6 files changed, 36 insertions(+), 47 deletions(-) delete mode 100644 src/Common/Commands.Common/ApplicationInsights.config diff --git a/src/Common/Commands.Common/ApplicationInsights.config b/src/Common/Commands.Common/ApplicationInsights.config deleted file mode 100644 index 15cacdfe4131..000000000000 --- a/src/Common/Commands.Common/ApplicationInsights.config +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - ce08abab-065a-4af8-a997-fdd4cd5481b4 - \ No newline at end of file diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index e8e30c59fbe7..61e87d982d6b 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -38,10 +38,15 @@ public abstract class AzurePSCmdlet : PSCmdlet protected AzurePSQoSEvent QosEvent; - protected virtual bool IsMetricEnabled { + protected virtual bool IsUsageMetricEnabled { get { return false; } } + protected virtual bool IsErrorMetricEnabled + { + get { return true; } + } + [Parameter(Mandatory = false, HelpMessage = "In-memory profile.")] public AzureProfile Profile { get; set; } @@ -522,7 +527,7 @@ protected void InitializeQosEvent() { CmdletType = this.GetType().Name, IsSuccess = true, - UID = MetricHelper.GenerateSha256HashString(this.Profile.DefaultSubscription.Id.ToString()) + Uid = MetricHelper.GenerateSha256HashString(this.Profile.DefaultSubscription.Id.ToString()) }; } @@ -533,15 +538,12 @@ protected void LogQosEvent(bool waitForMetricSending = false) { QosEvent.FinishQosEvent(); WriteVerbose(QosEvent.ToString()); - if (!IsMetricEnabled) - { - return; - } try { - MetricHelper.LogUsageEvent(QosEvent); + MetricHelper.LogQoSEvent(QosEvent, IsUsageMetricEnabled, IsErrorMetricEnabled); MetricHelper.FlushMetric(waitForMetricSending); + WriteVerbose("Finish sending metric."); } catch (Exception e) { diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 5c6ed10a509b..945d7c23cfec 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -190,9 +190,6 @@ - - Always - Designer diff --git a/src/Common/Commands.Common/MetricHelper.cs b/src/Common/Commands.Common/MetricHelper.cs index 32f08c4fae92..2e0664bfa010 100644 --- a/src/Common/Commands.Common/MetricHelper.cs +++ b/src/Common/Commands.Common/MetricHelper.cs @@ -1,10 +1,6 @@ using System; using System.Collections.Generic; using System.Diagnostics; -using System.Diagnostics.Eventing.Reader; -using System.Globalization; -using System.Linq; -using System.Management.Automation; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; @@ -23,6 +19,8 @@ public static class MetricHelper static MetricHelper() { TelemetryClient = new TelemetryClient(); + //InstrumentationKey shall be injected in build server + TelemetryClient.InstrumentationKey = "ce08abab-065a-4af8-a997-fdd4cd5481b4"; //TelemetryClient.Context.Location.Ip = "0.0.0.0"; if (!IsMetricTermAccepted()) @@ -37,40 +35,47 @@ static MetricHelper() } } - public static void LogUsageEvent(AzurePSQoSEvent qos) + public static void LogQoSEvent(AzurePSQoSEvent qos, bool isUsageMetricEnabled, bool isErrorMetricEnabled) { if (!IsMetricTermAccepted()) { return; } - var tcEvent = new EventTelemetry("CmdletUsage"); - //tcEvent.Context.Location.Ip = "0.0.0.0"; - tcEvent.Context.User.Id = qos.UID; - tcEvent.Context.User.UserAgent = AzurePowerShell.UserAgentValue.ToString(); - tcEvent.Properties.Add("CmdletType", qos.CmdletType); - tcEvent.Properties.Add("IsSuccess", qos.IsSuccess.ToString()); - tcEvent.Properties.Add("Duration", qos.Duration.TotalSeconds.ToString(CultureInfo.InvariantCulture)); - - TelemetryClient.TrackEvent(tcEvent); + if (isUsageMetricEnabled) + { + LogUsageEvent(qos); + } - if (qos.Exception != null) + if (isErrorMetricEnabled && qos.Exception != null) { LogExceptionEvent(qos); } } - private static void LogExceptionEvent(AzurePSQoSEvent qos) + private static void LogUsageEvent(AzurePSQoSEvent qos) { + var tcEvent = new RequestTelemetry(qos.CmdletType, qos.StartTime, qos.Duration, string.Empty, qos.IsSuccess); + tcEvent.Context.User.Id = qos.Uid; + tcEvent.Context.User.UserAgent = AzurePowerShell.UserAgentValue.ToString(); + tcEvent.Context.Device.OperatingSystem = Environment.OSVersion.VersionString; + + TelemetryClient.TrackRequest(tcEvent); + } + private static void LogExceptionEvent(AzurePSQoSEvent qos) + { + //Log as custome event to exclude actual exception message var tcEvent = new EventTelemetry("CmdletError"); tcEvent.Properties.Add("ExceptionType", qos.Exception.GetType().FullName); + tcEvent.Properties.Add("StackTrace", qos.Exception.StackTrace); if (qos.Exception.InnerException != null) { tcEvent.Properties.Add("InnerExceptionType", qos.Exception.InnerException.GetType().FullName); + tcEvent.Properties.Add("InnerStackTrace", qos.Exception.InnerException.StackTrace); } - tcEvent.Context.User.Id = qos.UID; + tcEvent.Context.User.Id = qos.Uid; tcEvent.Properties.Add("CmdletType", qos.CmdletType); TelemetryClient.TrackEvent(tcEvent); @@ -129,14 +134,16 @@ public class AzurePSQoSEvent { private readonly Stopwatch _timer; + public DateTimeOffset StartTime { get; set; } public TimeSpan Duration { get; set; } public bool IsSuccess { get; set; } public string CmdletType { get; set; } public Exception Exception { get; set; } - public string UID { get; set; } + public string Uid { get; set; } public AzurePSQoSEvent() { + StartTime = DateTimeOffset.Now; _timer = new Stopwatch(); _timer.Start(); } diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs index 4fa98a51c09a..340bc49506d2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs @@ -23,7 +23,7 @@ public abstract class ComputeClientBaseCmdlet : AzurePSCmdlet { protected const string VirtualMachineExtensionType = "Microsoft.Compute/virtualMachines/extensions"; - protected override bool IsMetricEnabled + protected override bool IsUsageMetricEnabled { get { return true; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs index 8a1b456e9505..25293d78aa91 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs @@ -51,7 +51,7 @@ public class NewAzureVMConfigCommand : AzurePSCmdlet [ValidateNotNullOrEmpty] public string AvailabilitySetId { get; set; } - protected override bool IsMetricEnabled + protected override bool IsUsageMetricEnabled { get { return true; } } From a5f177241e156378f4fed82279fb8a18e1a1b963 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Wed, 22 Jul 2015 16:42:21 -0700 Subject: [PATCH 45/58] Add skip condition to LogQosEvent --- src/Common/Commands.Common/AzurePSCmdlet.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index 61e87d982d6b..cfcb940db89b 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -537,8 +537,14 @@ protected void InitializeQosEvent() protected void LogQosEvent(bool waitForMetricSending = false) { QosEvent.FinishQosEvent(); + //TODO change to debug WriteVerbose(QosEvent.ToString()); + if (!IsUsageMetricEnabled && (!IsErrorMetricEnabled || QosEvent.IsSuccess)) + { + return; + } + try { MetricHelper.LogQoSEvent(QosEvent, IsUsageMetricEnabled, IsErrorMetricEnabled); From bb697777b5950bf74dd0afeb0753ed20e9897a0d Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Wed, 29 Jul 2015 16:06:39 -0700 Subject: [PATCH 46/58] Fix test fail in ActionConfirm --- src/Common/Commands.Common/AzurePSCmdlet.cs | 29 ++++++++++++++++--- ...uprn1_2015-29-7--00-11-29.VaultCredentials | 13 +++++++++ ...uprn1_2015-29-7--22-25-41.VaultCredentials | 13 +++++++++ 3 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials create mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index cfcb940db89b..05d14d4591ef 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -527,8 +527,17 @@ protected void InitializeQosEvent() { CmdletType = this.GetType().Name, IsSuccess = true, - Uid = MetricHelper.GenerateSha256HashString(this.Profile.DefaultSubscription.Id.ToString()) }; + + if (this.Profile != null && this.Profile.DefaultSubscription != null) + { + QosEvent.Uid = MetricHelper.GenerateSha256HashString( + this.Profile.DefaultSubscription.Id.ToString()); + } + else + { + QosEvent.Uid = "defaultid"; + } } /// @@ -536,6 +545,11 @@ protected void InitializeQosEvent() /// protected void LogQosEvent(bool waitForMetricSending = false) { + if (QosEvent == null) + { + return; + } + QosEvent.FinishQosEvent(); //TODO change to debug WriteVerbose(QosEvent.ToString()); @@ -568,12 +582,19 @@ protected void LogQosEvent(bool waitForMetricSending = false) /// The action code protected void ConfirmAction(bool force, string actionMessage, string processMessage, string target, Action action) { - QosEvent.PauseQoSTimer(); + if (QosEvent != null) + { + QosEvent.PauseQoSTimer(); + } + if (force || ShouldContinue(actionMessage, "")) { if (ShouldProcess(target, processMessage)) - { - QosEvent.ResumeQosTimer(); + { + if (QosEvent != null) + { + QosEvent.ResumeQosTimer(); + } action(); } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials new file mode 100644 index 000000000000..d763e7b8e25e --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials @@ -0,0 +1,13 @@ + + + f5303a0b-fae4-4cdb-b44d-0e4c032dde26 + BackupVault + backuprn1 + MIIKigIBAzCCCkoGCSqGSIb3DQEHAaCCCjsEggo3MIIKMzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjhgBjTQJmKzwICB9AEggTY86IgRTRSlznNX8pxS+HDPkJ6ZVGM2Vv5ZSUPj3c5/7QXMQwerthevagLTkA83mzWhRBt+2/8LK7qTioOoPPFsTzPhsrFctyXg1RW8VR9dmVWPPnc9lZna9ct6GVWbZVt8fZYtb4EeX8w+KaF9r3Vm5KNuZ31eQowz77IktlprzBHRAJbuKBGY2HKh0LVtM9FR3xAS4ngUvx0t6J17qa6vRP7j5Ei3nZWUDBoMaOex9ALQvpm2INdWZeOdxHFD0pDmXrH3DOMkWtWFUXJ+EWjpuZWMrOKK0C6bgmtyYu1bC+hzruRi+fT7zqQ6UsJVxl/Fvwm5ocKAek/bxjyp5BkUtTqjwU4Ugq3x8jbO1NZh03PdkOnQMphHOUWbcPn3jONFCGFfpjES0LRBaDLS1UeilPKq6hCGIOxziaXXlz+DxCMOm3N2GVYnbMeVpBYlEcy1Xd+oM0cJGc/MlAQf4XDO9pSFp0Y5RS0A/6Muut8SSGBZRc2AxreOgQpKRlBgfC0Yf4y1nyBJucUQiH1iYRXmazqJ/W0HJKENUxX/QBrwEHgzxwn9+jz2DPsqjaTbhjVSpQgeMPXqWnivKZEvT0r9MsQ3pJN0rbrjSOgMBO8JZ/5DHs9Qlbd0Ml/g21dCzqN3spbvKlHchDy/TC0VSRz7pH/VbiysV+wZYdvNYgC9gSNbeLmjfrq8G62A7mvqnWSrsIl1Czbk9H/3vcFLAY6n6YbDrIQgw4i4wPjcaAAD/WuLyI2emoATqVgK15jSxjW42Re/3G6KP3ZzS/wF9sdvrwIMmu+bt0g0Lxr5CiktZtTwznY+r+mS5hndxpYg39LmJIH3J/UX+3opXRidFmUdWUL+/wiy/TFyZqTv1F+OPi2AV3mC1zZjHaDZc3rI/wI5bobCfXv5yotukAe7zHJA31yL1xgm6Fq3JLzrqEZReagTRLBgiQg8xtjqkplG+fsiAxZz1+EPsHpYaSUjKf1AkBPU0OJV0XKDMeq9eR6tpXlAWq4Dn2cvZuW4OAjn4kdjOP25By+cB8zMOS+uYroMGRiQA46pXGPcW7AQup9pSGIi+P6l81wfzwd/HWcZPgkpW6Glx7X+Ew496Fbo1xpFa6FtEWpHNnnRpkc8SkTLXqjrDfljBcD6JEwv/BMTJSWA4pUQVAZmC3SO+TcKvlN5zTqAckdKmZiqW0xQoy5wBoGGo4vbjqm+DXg5Phvv0TppAmWZ6LFM4LLcFVuB+TpEPVW5q0O2CKk4z/HqChXFSo6BjfTSG7DhYgbMvBdvwKHocu29ydK/kjY0534lmFl+M+ejJK5kNK5nVaOUTn08JwHVipzHsnlRh11f3crkmXhKolC1MEn8oHsADi0ibrtKftuqhZMVawjL7lqHXj3XzkSY3na69REqP74iRxgGKaTCpEMIpxJAv+TAEadzYbmCrm1fBkJLntEP1TXGgwrOtl4msAYcyBGDV0OHo3it8FSSyWlaMQPs51k1/EOo5cARasuUXx59wCy6ioI4XM4nydZz+YqvT0ZOegcyD5hrLOA8rxwsHg1l+tqOp7h8kG4JzhwLp1b7IHnxKCOW/h5eI5OWunbksZXdgrvUZoXAVa3o+kS2sp82XWcN/EGg9RC2PC3pKlccJp3AyIatLWzo+n60BcCqHFxETGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANABGADkAQgA0ADMAQQA3AC0ARgBDAEYAQwAtADQANgAyAEUALQA5ADQANQBCAC0ARQAwADAARQA1ADcAQgAzADAAMgBGAEYAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQfBgkqhkiG9w0BBwagggQQMIIEDAIBADCCBAUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECEDDRbx8dO6iAgIH0ICCA9jqKMuNYSfV8BmuDj4sI7NjWnCl+QyMHAbUKQEvrT47WJWtBJ2T3w6rDd+Qxs7SgqOP7Z17pX8G8mTbuEyHVAqQsXo7mqwH1BIaR/RivZs/WImRX0v8TmftNCDFN6hF7Z7GMyqSEEAkNhych7OrGGHM2NQdCIOtOhhnW98LikIWNKcaG3ZLU/5kuNKU26IC/oU4MY+ebkSADc+vW50KObiW1hAkSrLyJ/31r2DK80nAy2saAac3ynPNdBE6Ibqh5mnLoZcz7aKNJi+WB7z0XK5vw29/dS8nZGz7gT0GkpbRQnv+MaKV/SKNoe8KTviI7dx5Cp33avwjbfstdDgW/TL5q48TxUisKvNFM6GFTsAM0wgAZlnSQ+Kqqogc7T9b+/OYLl50MokGbPh0dhh5+vTXnhMLwiULtmFkIIOJDFHTE2tz2OHHDHbpi1m483qrL2LuEnnWP7p+mg0IsAo8peeenxMCbRZjbpPCDz9InScN22OLudvUk+SLbjmq1Pw9QXjiHV+qvxsz6OTiv7BQn6Rmdi0lDmbQgN68Fpu3rvjAI3YacgpLz6JGsId8sPwBOb8q18S2QotkJ6cXRnePB0wpoK7bduv6Eua1PsEDz/wSe7hxj9s07EjMKpm4sib/0Lz3ji7gaTS4oNAFN0rTThk+kmEYv78gGLF0LMFGhnX4HulWJJxJu9AhdWV1y7xWJ/sIZW0TvbhgnH4g2Qyt67I/Yb6KuUVGFPd+z2GGGEq8IYx16Q/kwdn8Cq93CjUvrudKjAGaBhYTYBm33iROIaRmKdghkqSpyrCclGhOH306ptPV2OytDO2dNgxi0AlCk2QPEs0y1bqvUBRvSzzD6JfIvLdo7F7g4r/FvVz60ipEjW42CBb/QiZUsMo4eT5D1tPnhVBfjMvaK4yAygFJWX8I7ovmMIfpw58GsKVGrw0Zjf2sCkFwZHGLWHK6DEfOB05TBYMvwD3C27iDiDiA1kjSRTS4Jg3O9Wk+stbpu2/2Iagqf2JP4LMOHqA1Tg/9t9i9xCkTQPkSj7q/jD4VMcjeRacYwnWsSrRwDV2+ZOaa2UZE7+1ALfifK5TM/JCSEO9Kb/e+atDEK6apkDacCdI41ztYKKeUJbGd2zKh6tP0Ohgd5tvjo+z9fYnklMxbJm+dqJf/EHjCLc2dNj4oBp3rKiqNp58LNR4NhRkRqvjqYqQhd/UqVaRcZ1XF52g1ybE2dzxELwtyN0gQ4BTBIrmkDI1e9fdcOkGRWoQmrmRirJBL17FujV421SlA8tMH3S/cVfFVlKgA1tw1wDDBWtD63Z5ZDWMDVKUwNzAfMAcGBSsOAwIaBBQuvQHr3+/tv6RNKU6YLejtHTJwtwQUQ5AMY11vDC3BRj7afivH0Pk00Aw= + + accesscontrol.windows.net + seadev01rrp1users + http://windowscloudbackup/m3 + + WABUpdateKBLink,http://go.microsoft.com/fwlink/p/?LinkId=229525;StorageQuotaPurchaseLink,http://go.microsoft.com/fwlink/?LinkId=205490;WebPortalLink,http://go.microsoft.com/fwlink/?LinkId=252913;WABprivacyStatement,http://go.microsoft.com/fwlink/?LinkId=221308 + \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials new file mode 100644 index 000000000000..522fd4425407 --- /dev/null +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials @@ -0,0 +1,13 @@ + + + f5303a0b-fae4-4cdb-b44d-0e4c032dde26 + BackupVault + backuprn1 + MIIKigIBAzCCCkoGCSqGSIb3DQEHAaCCCjsEggo3MIIKMzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgAr2Wa2mXTegICB9AEggTYyX2w9YodwsvTBxIUngy88DSS/0tdxnlFg+Gc1cKbgRGeyc3mG3zlF66Jo4DgT6dV+4LMPmH2Ml/SmvgHRWHhjhdmEPnHR5ZBpkkcRcKLbkwSaqBha0bsoIDgvbApAjB5n5pvmCBIQPPFSFQ8r3z2fpDi57zAlRPurBKqELSzsbF2oTGjGdmXRxqr00UJBksY+A5Ux1GlQmgcfTe4314fwsklbVgqCBskjpD5Ypdd0JOP8zNir/e6qpJshIP5rIH6JxtpReODm4Q2FnxiNIRfj9X0JOvrzcMI8rc9AqeAsQCG8bZeMx2Yjl7u3yjKiit8x9RCAgLKj3rPSz2AzsG6lgss4Gb2DaQZzmGo/f6vs/2PaJnMJctkJ8DTldyxYoeW/fgPpi1xZqABj88zrKq61htFeUhg2zEAaXOpeyluN01dEWZL9Nk2o63ls9QXx1V94zdk+st/P1OQgjeJ2R+wl1/XyNa7KwqxxSp7v95LhWKT/J1w/D8bMMmPnyzGQ9/rNL3oRktINQ8etjRYanpwA2X3IH44OHKg8i47/cVC2thSDgDAeF7g+aqhgZSlV8x3fgo1HmiU9TfU4NTaYOhPEQfErZ9d8f3Kg1MEhYdt59d/IJT1NLGwmNsB6GAO8OC/IbVtkxwXE1avUCfxMdgxbkIAX85Unj4cOIYviMwwbnLBnTDvBSFjUnwmaeu5U/QjJ69ybzhJoa8Ak7OvvQojtirBuX/UfdiL5TEW6gt2oX7/jXh7tGvuEjI89n7gm/4zeszOP5aSyzO3VOR5gXiYAVKo89+aTfQ19cZrYWw0B75diuU9j1hMcnZlrPLYvvzbM59ZhZLsg5ePPBiRV/U27hqHeLKHQRBtf+PiK1xmI2tKEJEaZ6uupdSmRxhYRozLrxayMVdECVSNiOi5zbcQEyDPtGL7a3/MIDbW0bjVa6NHu4fkOWWX1qRdZgpKL82uSGkQqTwWVgngtxZASbWXNt916YJF6QZWHOQWlYRC1txOagI2IPM0shaH2Tk0gvwa2QGeB44rU+ZgdtXXXAjzhtWAnwbhq0HqFFiZtJltNoMWF1ijP0eY1x1mMUd8dvpXNeu61xIi09eVXuWWQ5XwBrUsHOaHwPdI1n9Q4Im5+kqQ4s3Rls9pXEnx/A1B5tNoeP8D9KOQzcvRIcvuTKlXQspgiCRkZa74psoyeIcM535nLaeP4vcC0xlBXkU1PlVmBA4McC5rYQOhEyUtcamRKR3tjq6pMSiAqgbv4ZhzbCs4y9O34W92DWI09q1/4Xq0lKUSsXZNkw7Ei1QEoRWtYswJOqiw3jodZhODLMNo93onYD+nHmj3M14K9KnyGo1BO+wscRY5iQfPew1UJS+lzEieUkOoyJuMHG0OtagKnbvDzQZH+Z8Gmm5FdG1/p4MJAQW7+paIwCHXAp767opWwq5Ry13jTros3allgL4pAf8HDMeykqvqswaxAQjC99TcQafIPg5KFsWcu6C2VEIF5CNKmkoFvG9DVguber7HsExoN7uv3VkS0HMhzCPxbPuyx+1cMnOZSzcnwNSS4NXYGXHpI7bXcnEipxllgcbcIM5uPn/0H+6Z+WmN55fKcIHlt1H+mbb2rqwGcpfpejxzyM6sBcFPwGieFNY6ocnEOBkchG5Jw+JfZTGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANwA3ADAARgA1ADQAMQBFAC0AMQBDADUAOAAtADQAOQBCAEMALQBBADgAQQBDAC0ANwAxADUARQA3ADYAOABCADEAQQBGAEQAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQfBgkqhkiG9w0BBwagggQQMIIEDAIBADCCBAUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECK91wGOCXTadAgIH0ICCA9jAt1/8rP8a1YU3C2zLBvZvqYJyzy7a7jUzxKOSTUckMdlBWlVPuGGF6eT2nALrwa8hJgkEly2remtnL2uLM+GP7h5L+KitGDZUuNGgzR1ritENXfPGIgwBj0fH0+zNU2fNAETQy8MHSJI8WFjoaA+U/K/CcGRwgbz6OnD2+5rqnWgyFEBJGWORFT38eiRIOBotys2QL9GkTWo3FtiK4FvaW/oztaZwzLtTQicmegiBCrL0jMK/mAXd3l7ZPH/CXKnb+8CDO4wtjbQjDKJl7AHnhOqtlVEwsuQMBxJdQ6dKDgtXa/WfChf7m/qy82tPbzXCXYdWazhHO3o8XIjxvQwQCs/iDT6pD+wjAz+PoLHgB6kI7Rjsjd7P1Jp0gAabqCOl+Qlfm8UASAOyAOEsvT3Wt7/Xy27uEEBW6ko1ATjkCq1UGHNp0COqeon9/d549bwZIXIWeUMXGxGuH//ZCj70bjGN6VWZ+DIhUrDKFPsBadWHPkykOMArs8441U9cpBS1prpADTMI1XlnfGCmqfMlK1+8eYQPGVzn5u3d3JnZh12RoFUmzHF4CR79RpxueU4DuQzJQWnY9YHgN6rPsZc05xgntppTQ48ZFsA4dRtjBGe14ueTAIb7dwi7ZLlfgLSKDquAaihC2+REYWfpb0AA2W9/jBLLPF2ceEQGUiKgqhSgXLmR8R9JXSfuuzYQYUmA9Honh1GtrdAEifo3LK7j1UG4/aVbXKDSaq75l95aaMDATqGz35+LZF/jYr7GYeZNUhVoQRKzK0c8aUUaoDSbhxCc5ujbJIJr6iEht89C2qV5Z0S2Gojw6A6JSG9WR2A8bLZvpjySuAeOFuVYze3SNMl4aUg2zSrxx6zqnuR6EjlbxG7QW7v/ame2ZQjH9oslDjUj1n95zeLCaGDy8J1la5QpjQ3m0CfICELpfLSK5KrxvDye27JowiJKRtyukxULOKH6FDJTGTM2QrTi5LNnr4qu+ovPBMHiFVUbcTmdy1dCJHJprxIkf70IORr4U5sr5n2IFcHC/u+1i9xH6GQutMEn5zC8MFP4V12g8ad4S0XK3+Ug3phhrTun8XeWfqaFtRXOQ8G87Az6gmS+LqbCUjIIxENzDZiUdJX2aGqzXvA/qsaUc1fDCIZt6eeQOctEBpPQwuT9DlgfmD+GqOyf3CGNtD/LbNeyWTUr2FGH2pXC7cbphwKRlNz5hQfSHPoVV7/cKx7wAJOs105OBM6ny/0RBtQ9tq2DwYn2eKB4YKIEYdgHQnMgSv+ZyUhBOC3HPLJh3BH2L6KtYOnwd1aI+iB3Pdp5UTEwNzAfMAcGBSsOAwIaBBRVuKrsGs36MtHrkQDtfdhtf+AByAQUVBemIbZ+RrGkWRSNLS5tmuXDujk= + + accesscontrol.windows.net + seadev01rrp1users + http://windowscloudbackup/m3 + + WABUpdateKBLink,http://go.microsoft.com/fwlink/p/?LinkId=229525;StorageQuotaPurchaseLink,http://go.microsoft.com/fwlink/?LinkId=205490;WebPortalLink,http://go.microsoft.com/fwlink/?LinkId=252913;WABprivacyStatement,http://go.microsoft.com/fwlink/?LinkId=221308 + \ No newline at end of file From 6fe23500361a86bfaa2d440d3a0d5e3159e81bb4 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Fri, 31 Jul 2015 16:58:03 -0700 Subject: [PATCH 47/58] Add timeout to AI flush --- src/Common/Commands.Common/MetricHelper.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Common/Commands.Common/MetricHelper.cs b/src/Common/Commands.Common/MetricHelper.cs index 2e0664bfa010..5e7fec432484 100644 --- a/src/Common/Commands.Common/MetricHelper.cs +++ b/src/Common/Commands.Common/MetricHelper.cs @@ -14,6 +14,7 @@ namespace Microsoft.WindowsAzure.Commands.Common { public static class MetricHelper { + private const int FlushTimeoutInMilli = 5000; private static readonly TelemetryClient TelemetryClient; static MetricHelper() @@ -94,13 +95,10 @@ public static void FlushMetric(bool waitForMetricSending) return; } + var flushTask = Task.Run(() => FlushAi()); if (waitForMetricSending) { - FlushAi(); - } - else - { - Task.Run(() => FlushAi()); + Task.WaitAll(new[] { flushTask }, FlushTimeoutInMilli); } } From 3cbf161c6a09c19b534f09672eaff8b17bf66a59 Mon Sep 17 00:00:00 2001 From: Shefali Date: Wed, 2 Sep 2015 18:09:49 -0700 Subject: [PATCH 48/58] remove debug tests --- .../Commands.HDInsight.Test/Commands.HDInsight.Test.csproj | 1 + .../HDInsight/CmdLetTests/ConnectClusterCommandCmdletTests.cs | 2 +- .../HDInsight/CmdLetTests/GetCommandCmdletTests.cs | 2 +- .../HDInsight/CmdLetTests/GetJobsCmdletTests.cs | 2 +- .../HDInsight/CmdLetTests/GetPropertiesCmdletTests.cs | 2 +- .../HDInsight/CmdLetTests/NewClusterCmdletTests.cs | 2 +- .../HDInsight/CmdLetTests/StartJobsCmdletTests.cs | 2 +- 7 files changed, 7 insertions(+), 6 deletions(-) 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 61a94fdf2e85..e60bb7edd892 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -263,6 +263,7 @@ + Designer diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/ConnectClusterCommandCmdletTests.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/ConnectClusterCommandCmdletTests.cs index cabc1428631d..07489a2f4e8e 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/ConnectClusterCommandCmdletTests.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/ConnectClusterCommandCmdletTests.cs @@ -95,7 +95,7 @@ public void ICanCallThe_Connect_ClusterHDInsightClusterCmdlet_MoreThanOnce() } } - [TestMethod] + //[TestMethod] [TestCategory("CheckIn")] [TestCategory("Integration")] [TestCategory("PowerShell")] diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetCommandCmdletTests.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetCommandCmdletTests.cs index 28aa920fc37c..112ab904bf79 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetCommandCmdletTests.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetCommandCmdletTests.cs @@ -72,7 +72,7 @@ public void ICanCallThe_Get_ClusterHDInsightClusterCmdlet_WithADnsName() } } - [TestMethod] + //[TestMethod] [TestCategory("CheckIn")] public void ICanCallThe_Get_ClusterHDInsightClusterCmdlet_WithDebug() { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetJobsCmdletTests.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetJobsCmdletTests.cs index c0fc983e3e5f..1da6279d908e 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetJobsCmdletTests.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetJobsCmdletTests.cs @@ -86,7 +86,7 @@ public void ICanCallThe_Get_HDInsightJobsCmdletWithJobId() } } - [TestMethod] + //[TestMethod] [TestCategory("CheckIn")] [TestCategory("Integration")] diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetPropertiesCmdletTests.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetPropertiesCmdletTests.cs index 412672a67a43..f0d319817ca6 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetPropertiesCmdletTests.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/GetPropertiesCmdletTests.cs @@ -51,7 +51,7 @@ public void CanCallTheGetHDInsightPropertiesCmdlet() } } - [TestMethod] + //[TestMethod] [TestCategory("CheckIn")] public void CanCallTheGetHDInsightPropertiesCmdletWithDebugSwitch() { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/NewClusterCmdletTests.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/NewClusterCmdletTests.cs index 3613ccaea6df..87067b320aec 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/NewClusterCmdletTests.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/NewClusterCmdletTests.cs @@ -597,7 +597,7 @@ public void ICanCreateAClusterUsingPowerShellAndConfig_New_Set_Add_ScriptAction( } } - [TestMethod] + //[TestMethod] [TestCategory("CheckIn")] [TestCategory("Integration")] [TestCategory("PowerShell")] diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/StartJobsCmdletTests.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/StartJobsCmdletTests.cs index 09456e7864ef..49b7ffca28dc 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/StartJobsCmdletTests.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/HDInsight/CmdLetTests/StartJobsCmdletTests.cs @@ -96,7 +96,7 @@ public override void ICanCallThe_Start_HDInsightJobsCmdlet() } - [TestMethod] + //[TestMethod] [TestCategory("CheckIn")] [TestCategory("Integration")] From 91251af47f8809202026d5c1256769a246f1245f Mon Sep 17 00:00:00 2001 From: Shefali Date: Fri, 4 Sep 2015 10:45:55 -0700 Subject: [PATCH 49/58] updating refs --- .../Commands.HDInsight.csproj | 10 ++++---- .../Commands.HDInsight/packages.config | 4 ++-- .../Commands.HDInsight.Test.csproj | 24 +++++++++---------- .../Commands.HDInsight.Test/packages.config | 4 ++-- .../Commands.HDInsight/HDInsight.csproj | 24 +++++++++---------- .../Commands.HDInsight/packages.config | 4 ++-- 6 files changed, 36 insertions(+), 34 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj index 7efebfe59878..d72487365a13 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj @@ -101,11 +101,13 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.HDInsight.1.0.1-preview\lib\net40\Microsoft.Azure.Management.HDInsight.dll + + False + ..\..\..\packages\Microsoft.Azure.Management.HDInsight.1.0.5-preview\lib\net40\Microsoft.Azure.Management.HDInsight.dll - - ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.1.0.1-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll + + False + ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.1.0.5-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll False diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config index ca7b4a5aadcd..b886773a7ee5 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config @@ -4,8 +4,8 @@ - - + + 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 e60bb7edd892..399b591668b8 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -77,13 +77,13 @@ ..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.Hadoop.Client.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.Hadoop.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll False @@ -118,21 +118,21 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll False diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config index 00a87cb382ed..01ce340224e9 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config @@ -13,14 +13,14 @@ - + - + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj index 8e564c431416..8755f9be0e56 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj @@ -80,13 +80,13 @@ ..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.Hadoop.Client.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.Hadoop.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -121,21 +121,21 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.11\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll False diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config index d70c540f8ae4..013843da9a53 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config @@ -12,14 +12,14 @@ - + - + From f85fb6b07e11468a46ef8f346651bf060a15c856 Mon Sep 17 00:00:00 2001 From: Shefali Date: Fri, 28 Aug 2015 10:46:59 -0700 Subject: [PATCH 50/58] add warning to ASM cmdlets --- .../Cmdlet/AddAzureHDInsightConfigValuesCmdlet.cs | 1 + .../Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs | 1 + .../Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs | 1 + .../Cmdlet/AddAzureHDInsightStorageCmdlet.cs | 1 + .../Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs | 1 + .../Cmdlet/AzureHdInsightPowerShellHardCodes.cs | 3 +++ .../Cmdlet/GetAzureHDInsightClusterCmdlet.cs | 1 + .../Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs | 1 + .../Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs | 1 + .../Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs | 1 + .../Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs | 1 + .../Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs | 1 + .../HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightClusterCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs | 1 + .../Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs | 1 + .../Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs | 1 + .../Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs | 1 + .../Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs | 1 + .../Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs | 1 + .../Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs | 1 + .../Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs | 1 + .../Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs | 1 + .../Cmdlet/UseAzureHDInsightClusterCmdlet.cs | 1 + .../Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs | 1 + 29 files changed, 31 insertions(+) diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightConfigValuesCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightConfigValuesCmdlet.cs index fd175d2d7658..14aac360e13a 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightConfigValuesCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightConfigValuesCmdlet.cs @@ -161,6 +161,7 @@ protected override void EndProcessing() { try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs index bc0bfc5a6883..e6b0482ca44f 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs @@ -106,6 +106,7 @@ protected override void EndProcessing() { try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs index 62ca10305f8f..672c05824904 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs @@ -105,6 +105,7 @@ protected override void EndProcessing() { try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs index c51612580cdd..ec633e25a0b2 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs @@ -82,6 +82,7 @@ protected override void EndProcessing() { try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs index 8e9bcdd35219..6f031f179c9c 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs @@ -38,6 +38,7 @@ public abstract class AzureHDInsightCmdlet : AzurePSCmdlet private ILogWriter logger; + /// /// Gets or sets a value indicating whether logging should be enabled. /// diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHdInsightPowerShellHardCodes.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHdInsightPowerShellHardCodes.cs index 685c08c7310f..d9b182b753b2 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHdInsightPowerShellHardCodes.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHdInsightPowerShellHardCodes.cs @@ -104,5 +104,8 @@ internal class AzureHdInsightPowerShellConstants public const string Show = "Show"; public const string Skip = "Skip"; public const string ToDateTime = "To"; + + public const string AsmWarning = + "WARNING: The Azure Service Management (ASM) cmdlets for HDInsight are deprecated and will be non-default in a future release, and they will be removed soon thereafter. Please use Switch-AzureMode AzureResourceManager to use the Azure Resource Manager cmdlets for HDInsight."; } } diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs index ba90e36e0099..149855546b15 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs @@ -108,6 +108,7 @@ protected override void EndProcessing() { try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); this.command.Logger = this.Logger; Task task = this.command.EndProcessing(); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs index b06de1fb73cd..6cc20146356c 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs @@ -128,6 +128,7 @@ protected override void EndProcessing() { try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); this.command.Logger = this.Logger; Task task = this.command.EndProcessing(); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs index a44e112ca06f..112ecfdbadb4 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs @@ -140,6 +140,7 @@ public string TaskLogsDirectory /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Logger = this.Logger; this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); this.AssertTaskLogsDirectorySpecified(this.TaskLogsDirectory); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs index e95bbb6a07f0..c346efef255b 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs @@ -106,6 +106,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Logger = this.Logger; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs index 7cdb66d4c14f..137e24c4d996 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs @@ -130,6 +130,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Enable = true; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs index ac92c9dbc5a3..293e2aaede78 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs @@ -136,6 +136,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Enable = true; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs index 2fad60725cd7..817353e69cf0 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs @@ -138,6 +138,7 @@ protected override void EndProcessing() this.command.Connection = currentConnection; try { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Logger = this.Logger; this.command.CurrentSubscription = this.GetCurrentSubscription(string.Empty, null); Task task = this.command.EndProcessing(); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs index 17a58c45876b..6c204fb5d5b0 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs @@ -436,6 +436,7 @@ protected override void BeginProcessing() /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); DateTime start = DateTime.Now; string msg = string.Format(CultureInfo.CurrentCulture, "Create Cluster Started : {0}", start.ToString(CultureInfo.CurrentCulture)); this.Logger.Log(Severity.Informational, Verbosity.Detailed, msg); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs index 715edd67618e..85584d210856 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs @@ -107,6 +107,7 @@ public string ZookeeperNodeVMSize /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs index cc37dfd51f62..73a1d21309f9 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs @@ -116,6 +116,7 @@ public string StatusFolder /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); if (this.File.IsNullOrEmpty() && this.Query.IsNullOrEmpty()) { throw new PSArgumentException("Either File or Query should be specified for Hive jobs."); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs index 1241bbaeb213..e87bf391d69d 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs @@ -118,6 +118,7 @@ public string StatusFolder /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightMapReduceJobDefinition output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs index f831f16d2562..8abda341481c 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs @@ -90,6 +90,7 @@ public string StatusFolder /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); if (this.File.IsNullOrEmpty() && this.Query.IsNullOrEmpty()) { throw new PSArgumentException("Either File or Query should be specified for Pig jobs."); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs index 83be88812484..70ba7c78a290 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs @@ -79,6 +79,7 @@ public string StatusFolder /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); if (this.File.IsNullOrEmpty() && this.Command.IsNullOrEmpty()) { throw new PSArgumentException("Either File or Command should be specified for Sqoop jobs."); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs index 28908089d58d..6f0b3be609f9 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs @@ -142,6 +142,7 @@ public string StatusFolder /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightStreamingMapReduceJobDefinition output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs index d262576da487..1c5e4ebb478d 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs @@ -105,6 +105,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); try { this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs index 9ee72f2e85b9..a5ceb9ddc153 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs @@ -129,6 +129,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Enable = false; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs index 3cbcff1d7eb5..aceda2af9568 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs @@ -134,6 +134,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.Enable = false; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs index 1bfa29a88682..abe769cd360e 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs @@ -124,6 +124,7 @@ public SetAzureHDInsightClusterSizeCmdlet() protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); if (Cluster != null) { Name = Cluster.Name; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs index 630980f02129..8175d4dbebcd 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs @@ -88,6 +88,7 @@ public string StorageContainerName /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs index 7ffcbbbf4d25..ae4f5f008513 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs @@ -126,6 +126,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); try { this.command.Logger = this.Logger; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs index c382e85680ae..6ecfd33af2a7 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs @@ -123,6 +123,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); try { this.command.Logger = this.Logger; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs index 63be227578f9..8a72e678e941 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs @@ -109,6 +109,7 @@ public string Subscription /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); try { this.command.Logger = this.Logger; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs index 7c18b0e6af94..07ac42fceb89 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs @@ -158,6 +158,7 @@ public double WaitTimeoutInSeconds /// protected override void EndProcessing() { + this.WriteWarning(AzureHdInsightPowerShellConstants.AsmWarning); try { this.command.Logger = this.Logger; From 703907b2a05f6aaf58cb3480147dddf229c48b6a Mon Sep 17 00:00:00 2001 From: Shefali Date: Tue, 8 Sep 2015 10:08:19 -0700 Subject: [PATCH 51/58] remove app.config --- .../Commands.HDInsight.Test/Commands.HDInsight.Test.csproj | 1 - 1 file changed, 1 deletion(-) 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 399b591668b8..7d8142ddf35b 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -263,7 +263,6 @@ - Designer From 42360a1f8f5777db7e5800e7c24797fbb8970ca4 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Tue, 8 Sep 2015 15:51:01 -0700 Subject: [PATCH 52/58] Integrate with opt in/out cmdlets --- src/Common/Commands.Common/AzurePSCmdlet.cs | 29 ++++++++++++++++--- src/Common/Commands.Common/MetricHelper.cs | 18 ++++-------- ...uprn1_2015-29-7--00-11-29.VaultCredentials | 13 --------- ...uprn1_2015-29-7--22-25-41.VaultCredentials | 13 --------- 4 files changed, 31 insertions(+), 42 deletions(-) delete mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials delete mode 100644 src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index 05d14d4591ef..43555c5eb5f1 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -219,6 +219,22 @@ protected static AzurePSDataCollectionProfile GetDataCollectionProfile() return _dataCollectionProfile; } + /// + /// Check whether the data collection is opted in from user + /// + /// true if allowed + public static bool IsDataCollectionAllowed() + { + if (_dataCollectionProfile != null && + _dataCollectionProfile.EnableAzureDataCollection.HasValue && + _dataCollectionProfile.EnableAzureDataCollection.Value) + { + return true; + } + + return false; + } + /// /// Save the current data collection profile Json data into the default file path /// @@ -551,24 +567,29 @@ protected void LogQosEvent(bool waitForMetricSending = false) } QosEvent.FinishQosEvent(); - //TODO change to debug - WriteVerbose(QosEvent.ToString()); if (!IsUsageMetricEnabled && (!IsErrorMetricEnabled || QosEvent.IsSuccess)) { return; } + if (!IsDataCollectionAllowed()) + { + return; + } + + WriteDebug(QosEvent.ToString()); + try { MetricHelper.LogQoSEvent(QosEvent, IsUsageMetricEnabled, IsErrorMetricEnabled); MetricHelper.FlushMetric(waitForMetricSending); - WriteVerbose("Finish sending metric."); + WriteDebug("Finish sending metric."); } catch (Exception e) { //Swallow error from Application Insights event collection. - WriteErrorWithTimestamp(e.ToString()); + WriteWarning(e.ToString()); } } diff --git a/src/Common/Commands.Common/MetricHelper.cs b/src/Common/Commands.Common/MetricHelper.cs index 5e7fec432484..9bb3d20e4296 100644 --- a/src/Common/Commands.Common/MetricHelper.cs +++ b/src/Common/Commands.Common/MetricHelper.cs @@ -20,19 +20,14 @@ public static class MetricHelper static MetricHelper() { TelemetryClient = new TelemetryClient(); - //InstrumentationKey shall be injected in build server - TelemetryClient.InstrumentationKey = "ce08abab-065a-4af8-a997-fdd4cd5481b4"; - //TelemetryClient.Context.Location.Ip = "0.0.0.0"; - - if (!IsMetricTermAccepted()) - { - TelemetryConfiguration.Active.DisableTelemetry = true; - } + // TODO: InstrumentationKey shall be injected in build server + TelemetryClient.InstrumentationKey = "7df6ff70-8353-4672-80d6-568517fed090"; + // Disable IP collection + TelemetryClient.Context.Location.Ip = "0.0.0.0"; if (TestMockSupport.RunningMocked) { - //TODO enable in final cr - //TelemetryConfiguration.Active.DisableTelemetry = true; + TelemetryConfiguration.Active.DisableTelemetry = true; } } @@ -84,8 +79,7 @@ private static void LogExceptionEvent(AzurePSQoSEvent qos) public static bool IsMetricTermAccepted() { - //TODO check the config/preference - return true; + return AzurePSCmdlet.IsDataCollectionAllowed(); } public static void FlushMetric(bool waitForMetricSending) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials deleted file mode 100644 index d763e7b8e25e..000000000000 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--00-11-29.VaultCredentials +++ /dev/null @@ -1,13 +0,0 @@ - - - f5303a0b-fae4-4cdb-b44d-0e4c032dde26 - BackupVault - backuprn1 - MIIKigIBAzCCCkoGCSqGSIb3DQEHAaCCCjsEggo3MIIKMzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjhgBjTQJmKzwICB9AEggTY86IgRTRSlznNX8pxS+HDPkJ6ZVGM2Vv5ZSUPj3c5/7QXMQwerthevagLTkA83mzWhRBt+2/8LK7qTioOoPPFsTzPhsrFctyXg1RW8VR9dmVWPPnc9lZna9ct6GVWbZVt8fZYtb4EeX8w+KaF9r3Vm5KNuZ31eQowz77IktlprzBHRAJbuKBGY2HKh0LVtM9FR3xAS4ngUvx0t6J17qa6vRP7j5Ei3nZWUDBoMaOex9ALQvpm2INdWZeOdxHFD0pDmXrH3DOMkWtWFUXJ+EWjpuZWMrOKK0C6bgmtyYu1bC+hzruRi+fT7zqQ6UsJVxl/Fvwm5ocKAek/bxjyp5BkUtTqjwU4Ugq3x8jbO1NZh03PdkOnQMphHOUWbcPn3jONFCGFfpjES0LRBaDLS1UeilPKq6hCGIOxziaXXlz+DxCMOm3N2GVYnbMeVpBYlEcy1Xd+oM0cJGc/MlAQf4XDO9pSFp0Y5RS0A/6Muut8SSGBZRc2AxreOgQpKRlBgfC0Yf4y1nyBJucUQiH1iYRXmazqJ/W0HJKENUxX/QBrwEHgzxwn9+jz2DPsqjaTbhjVSpQgeMPXqWnivKZEvT0r9MsQ3pJN0rbrjSOgMBO8JZ/5DHs9Qlbd0Ml/g21dCzqN3spbvKlHchDy/TC0VSRz7pH/VbiysV+wZYdvNYgC9gSNbeLmjfrq8G62A7mvqnWSrsIl1Czbk9H/3vcFLAY6n6YbDrIQgw4i4wPjcaAAD/WuLyI2emoATqVgK15jSxjW42Re/3G6KP3ZzS/wF9sdvrwIMmu+bt0g0Lxr5CiktZtTwznY+r+mS5hndxpYg39LmJIH3J/UX+3opXRidFmUdWUL+/wiy/TFyZqTv1F+OPi2AV3mC1zZjHaDZc3rI/wI5bobCfXv5yotukAe7zHJA31yL1xgm6Fq3JLzrqEZReagTRLBgiQg8xtjqkplG+fsiAxZz1+EPsHpYaSUjKf1AkBPU0OJV0XKDMeq9eR6tpXlAWq4Dn2cvZuW4OAjn4kdjOP25By+cB8zMOS+uYroMGRiQA46pXGPcW7AQup9pSGIi+P6l81wfzwd/HWcZPgkpW6Glx7X+Ew496Fbo1xpFa6FtEWpHNnnRpkc8SkTLXqjrDfljBcD6JEwv/BMTJSWA4pUQVAZmC3SO+TcKvlN5zTqAckdKmZiqW0xQoy5wBoGGo4vbjqm+DXg5Phvv0TppAmWZ6LFM4LLcFVuB+TpEPVW5q0O2CKk4z/HqChXFSo6BjfTSG7DhYgbMvBdvwKHocu29ydK/kjY0534lmFl+M+ejJK5kNK5nVaOUTn08JwHVipzHsnlRh11f3crkmXhKolC1MEn8oHsADi0ibrtKftuqhZMVawjL7lqHXj3XzkSY3na69REqP74iRxgGKaTCpEMIpxJAv+TAEadzYbmCrm1fBkJLntEP1TXGgwrOtl4msAYcyBGDV0OHo3it8FSSyWlaMQPs51k1/EOo5cARasuUXx59wCy6ioI4XM4nydZz+YqvT0ZOegcyD5hrLOA8rxwsHg1l+tqOp7h8kG4JzhwLp1b7IHnxKCOW/h5eI5OWunbksZXdgrvUZoXAVa3o+kS2sp82XWcN/EGg9RC2PC3pKlccJp3AyIatLWzo+n60BcCqHFxETGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANABGADkAQgA0ADMAQQA3AC0ARgBDAEYAQwAtADQANgAyAEUALQA5ADQANQBCAC0ARQAwADAARQA1ADcAQgAzADAAMgBGAEYAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQfBgkqhkiG9w0BBwagggQQMIIEDAIBADCCBAUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECEDDRbx8dO6iAgIH0ICCA9jqKMuNYSfV8BmuDj4sI7NjWnCl+QyMHAbUKQEvrT47WJWtBJ2T3w6rDd+Qxs7SgqOP7Z17pX8G8mTbuEyHVAqQsXo7mqwH1BIaR/RivZs/WImRX0v8TmftNCDFN6hF7Z7GMyqSEEAkNhych7OrGGHM2NQdCIOtOhhnW98LikIWNKcaG3ZLU/5kuNKU26IC/oU4MY+ebkSADc+vW50KObiW1hAkSrLyJ/31r2DK80nAy2saAac3ynPNdBE6Ibqh5mnLoZcz7aKNJi+WB7z0XK5vw29/dS8nZGz7gT0GkpbRQnv+MaKV/SKNoe8KTviI7dx5Cp33avwjbfstdDgW/TL5q48TxUisKvNFM6GFTsAM0wgAZlnSQ+Kqqogc7T9b+/OYLl50MokGbPh0dhh5+vTXnhMLwiULtmFkIIOJDFHTE2tz2OHHDHbpi1m483qrL2LuEnnWP7p+mg0IsAo8peeenxMCbRZjbpPCDz9InScN22OLudvUk+SLbjmq1Pw9QXjiHV+qvxsz6OTiv7BQn6Rmdi0lDmbQgN68Fpu3rvjAI3YacgpLz6JGsId8sPwBOb8q18S2QotkJ6cXRnePB0wpoK7bduv6Eua1PsEDz/wSe7hxj9s07EjMKpm4sib/0Lz3ji7gaTS4oNAFN0rTThk+kmEYv78gGLF0LMFGhnX4HulWJJxJu9AhdWV1y7xWJ/sIZW0TvbhgnH4g2Qyt67I/Yb6KuUVGFPd+z2GGGEq8IYx16Q/kwdn8Cq93CjUvrudKjAGaBhYTYBm33iROIaRmKdghkqSpyrCclGhOH306ptPV2OytDO2dNgxi0AlCk2QPEs0y1bqvUBRvSzzD6JfIvLdo7F7g4r/FvVz60ipEjW42CBb/QiZUsMo4eT5D1tPnhVBfjMvaK4yAygFJWX8I7ovmMIfpw58GsKVGrw0Zjf2sCkFwZHGLWHK6DEfOB05TBYMvwD3C27iDiDiA1kjSRTS4Jg3O9Wk+stbpu2/2Iagqf2JP4LMOHqA1Tg/9t9i9xCkTQPkSj7q/jD4VMcjeRacYwnWsSrRwDV2+ZOaa2UZE7+1ALfifK5TM/JCSEO9Kb/e+atDEK6apkDacCdI41ztYKKeUJbGd2zKh6tP0Ohgd5tvjo+z9fYnklMxbJm+dqJf/EHjCLc2dNj4oBp3rKiqNp58LNR4NhRkRqvjqYqQhd/UqVaRcZ1XF52g1ybE2dzxELwtyN0gQ4BTBIrmkDI1e9fdcOkGRWoQmrmRirJBL17FujV421SlA8tMH3S/cVfFVlKgA1tw1wDDBWtD63Z5ZDWMDVKUwNzAfMAcGBSsOAwIaBBQuvQHr3+/tv6RNKU6YLejtHTJwtwQUQ5AMY11vDC3BRj7afivH0Pk00Aw= - - accesscontrol.windows.net - seadev01rrp1users - http://windowscloudbackup/m3 - - WABUpdateKBLink,http://go.microsoft.com/fwlink/p/?LinkId=229525;StorageQuotaPurchaseLink,http://go.microsoft.com/fwlink/?LinkId=205490;WebPortalLink,http://go.microsoft.com/fwlink/?LinkId=252913;WABprivacyStatement,http://go.microsoft.com/fwlink/?LinkId=221308 - \ No newline at end of file diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials deleted file mode 100644 index 522fd4425407..000000000000 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/bin/f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn1_2015-29-7--22-25-41.VaultCredentials +++ /dev/null @@ -1,13 +0,0 @@ - - - f5303a0b-fae4-4cdb-b44d-0e4c032dde26 - BackupVault - backuprn1 - MIIKigIBAzCCCkoGCSqGSIb3DQEHAaCCCjsEggo3MIIKMzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgAr2Wa2mXTegICB9AEggTYyX2w9YodwsvTBxIUngy88DSS/0tdxnlFg+Gc1cKbgRGeyc3mG3zlF66Jo4DgT6dV+4LMPmH2Ml/SmvgHRWHhjhdmEPnHR5ZBpkkcRcKLbkwSaqBha0bsoIDgvbApAjB5n5pvmCBIQPPFSFQ8r3z2fpDi57zAlRPurBKqELSzsbF2oTGjGdmXRxqr00UJBksY+A5Ux1GlQmgcfTe4314fwsklbVgqCBskjpD5Ypdd0JOP8zNir/e6qpJshIP5rIH6JxtpReODm4Q2FnxiNIRfj9X0JOvrzcMI8rc9AqeAsQCG8bZeMx2Yjl7u3yjKiit8x9RCAgLKj3rPSz2AzsG6lgss4Gb2DaQZzmGo/f6vs/2PaJnMJctkJ8DTldyxYoeW/fgPpi1xZqABj88zrKq61htFeUhg2zEAaXOpeyluN01dEWZL9Nk2o63ls9QXx1V94zdk+st/P1OQgjeJ2R+wl1/XyNa7KwqxxSp7v95LhWKT/J1w/D8bMMmPnyzGQ9/rNL3oRktINQ8etjRYanpwA2X3IH44OHKg8i47/cVC2thSDgDAeF7g+aqhgZSlV8x3fgo1HmiU9TfU4NTaYOhPEQfErZ9d8f3Kg1MEhYdt59d/IJT1NLGwmNsB6GAO8OC/IbVtkxwXE1avUCfxMdgxbkIAX85Unj4cOIYviMwwbnLBnTDvBSFjUnwmaeu5U/QjJ69ybzhJoa8Ak7OvvQojtirBuX/UfdiL5TEW6gt2oX7/jXh7tGvuEjI89n7gm/4zeszOP5aSyzO3VOR5gXiYAVKo89+aTfQ19cZrYWw0B75diuU9j1hMcnZlrPLYvvzbM59ZhZLsg5ePPBiRV/U27hqHeLKHQRBtf+PiK1xmI2tKEJEaZ6uupdSmRxhYRozLrxayMVdECVSNiOi5zbcQEyDPtGL7a3/MIDbW0bjVa6NHu4fkOWWX1qRdZgpKL82uSGkQqTwWVgngtxZASbWXNt916YJF6QZWHOQWlYRC1txOagI2IPM0shaH2Tk0gvwa2QGeB44rU+ZgdtXXXAjzhtWAnwbhq0HqFFiZtJltNoMWF1ijP0eY1x1mMUd8dvpXNeu61xIi09eVXuWWQ5XwBrUsHOaHwPdI1n9Q4Im5+kqQ4s3Rls9pXEnx/A1B5tNoeP8D9KOQzcvRIcvuTKlXQspgiCRkZa74psoyeIcM535nLaeP4vcC0xlBXkU1PlVmBA4McC5rYQOhEyUtcamRKR3tjq6pMSiAqgbv4ZhzbCs4y9O34W92DWI09q1/4Xq0lKUSsXZNkw7Ei1QEoRWtYswJOqiw3jodZhODLMNo93onYD+nHmj3M14K9KnyGo1BO+wscRY5iQfPew1UJS+lzEieUkOoyJuMHG0OtagKnbvDzQZH+Z8Gmm5FdG1/p4MJAQW7+paIwCHXAp767opWwq5Ry13jTros3allgL4pAf8HDMeykqvqswaxAQjC99TcQafIPg5KFsWcu6C2VEIF5CNKmkoFvG9DVguber7HsExoN7uv3VkS0HMhzCPxbPuyx+1cMnOZSzcnwNSS4NXYGXHpI7bXcnEipxllgcbcIM5uPn/0H+6Z+WmN55fKcIHlt1H+mbb2rqwGcpfpejxzyM6sBcFPwGieFNY6ocnEOBkchG5Jw+JfZTGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANwA3ADAARgA1ADQAMQBFAC0AMQBDADUAOAAtADQAOQBCAEMALQBBADgAQQBDAC0ANwAxADUARQA3ADYAOABCADEAQQBGAEQAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQfBgkqhkiG9w0BBwagggQQMIIEDAIBADCCBAUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECK91wGOCXTadAgIH0ICCA9jAt1/8rP8a1YU3C2zLBvZvqYJyzy7a7jUzxKOSTUckMdlBWlVPuGGF6eT2nALrwa8hJgkEly2remtnL2uLM+GP7h5L+KitGDZUuNGgzR1ritENXfPGIgwBj0fH0+zNU2fNAETQy8MHSJI8WFjoaA+U/K/CcGRwgbz6OnD2+5rqnWgyFEBJGWORFT38eiRIOBotys2QL9GkTWo3FtiK4FvaW/oztaZwzLtTQicmegiBCrL0jMK/mAXd3l7ZPH/CXKnb+8CDO4wtjbQjDKJl7AHnhOqtlVEwsuQMBxJdQ6dKDgtXa/WfChf7m/qy82tPbzXCXYdWazhHO3o8XIjxvQwQCs/iDT6pD+wjAz+PoLHgB6kI7Rjsjd7P1Jp0gAabqCOl+Qlfm8UASAOyAOEsvT3Wt7/Xy27uEEBW6ko1ATjkCq1UGHNp0COqeon9/d549bwZIXIWeUMXGxGuH//ZCj70bjGN6VWZ+DIhUrDKFPsBadWHPkykOMArs8441U9cpBS1prpADTMI1XlnfGCmqfMlK1+8eYQPGVzn5u3d3JnZh12RoFUmzHF4CR79RpxueU4DuQzJQWnY9YHgN6rPsZc05xgntppTQ48ZFsA4dRtjBGe14ueTAIb7dwi7ZLlfgLSKDquAaihC2+REYWfpb0AA2W9/jBLLPF2ceEQGUiKgqhSgXLmR8R9JXSfuuzYQYUmA9Honh1GtrdAEifo3LK7j1UG4/aVbXKDSaq75l95aaMDATqGz35+LZF/jYr7GYeZNUhVoQRKzK0c8aUUaoDSbhxCc5ujbJIJr6iEht89C2qV5Z0S2Gojw6A6JSG9WR2A8bLZvpjySuAeOFuVYze3SNMl4aUg2zSrxx6zqnuR6EjlbxG7QW7v/ame2ZQjH9oslDjUj1n95zeLCaGDy8J1la5QpjQ3m0CfICELpfLSK5KrxvDye27JowiJKRtyukxULOKH6FDJTGTM2QrTi5LNnr4qu+ovPBMHiFVUbcTmdy1dCJHJprxIkf70IORr4U5sr5n2IFcHC/u+1i9xH6GQutMEn5zC8MFP4V12g8ad4S0XK3+Ug3phhrTun8XeWfqaFtRXOQ8G87Az6gmS+LqbCUjIIxENzDZiUdJX2aGqzXvA/qsaUc1fDCIZt6eeQOctEBpPQwuT9DlgfmD+GqOyf3CGNtD/LbNeyWTUr2FGH2pXC7cbphwKRlNz5hQfSHPoVV7/cKx7wAJOs105OBM6ny/0RBtQ9tq2DwYn2eKB4YKIEYdgHQnMgSv+ZyUhBOC3HPLJh3BH2L6KtYOnwd1aI+iB3Pdp5UTEwNzAfMAcGBSsOAwIaBBRVuKrsGs36MtHrkQDtfdhtf+AByAQUVBemIbZ+RrGkWRSNLS5tmuXDujk= - - accesscontrol.windows.net - seadev01rrp1users - http://windowscloudbackup/m3 - - WABUpdateKBLink,http://go.microsoft.com/fwlink/p/?LinkId=229525;StorageQuotaPurchaseLink,http://go.microsoft.com/fwlink/?LinkId=205490;WebPortalLink,http://go.microsoft.com/fwlink/?LinkId=252913;WABprivacyStatement,http://go.microsoft.com/fwlink/?LinkId=221308 - \ No newline at end of file From d50833f8a436d2682fcdb9575bf98c79dcc723d3 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Tue, 8 Sep 2015 18:35:08 -0700 Subject: [PATCH 53/58] Add wix file for AI dll --- setup/azurecmdfiles.wxi | 156 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 844c5a05065e..84a4a919a7c5 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -17,6 +17,9 @@ + + + @@ -112,6 +115,9 @@ + + + @@ -183,6 +189,9 @@ + + + @@ -551,6 +560,9 @@ + + + @@ -652,6 +664,9 @@ + + + @@ -814,6 +829,12 @@ + + + + + + @@ -1071,6 +1092,9 @@ + + + @@ -1172,6 +1196,9 @@ + + + @@ -1252,6 +1279,9 @@ + + + @@ -1329,6 +1359,9 @@ + + + @@ -1397,6 +1430,9 @@ + + + @@ -1531,6 +1567,9 @@ + + + @@ -1656,6 +1695,9 @@ + + + @@ -1733,6 +1775,9 @@ + + + @@ -1810,6 +1855,9 @@ + + + @@ -1854,6 +1902,9 @@ + + + @@ -1985,6 +2036,9 @@ + + + @@ -2053,6 +2107,9 @@ + + + @@ -2184,6 +2241,9 @@ + + + @@ -2285,6 +2345,9 @@ + + + @@ -2395,6 +2458,9 @@ + + + @@ -2487,6 +2553,9 @@ + + + @@ -2582,6 +2651,9 @@ + + + @@ -2641,6 +2713,9 @@ + + + @@ -2697,6 +2772,9 @@ + + + @@ -2781,6 +2859,9 @@ + + + @@ -2861,6 +2942,9 @@ + + + @@ -3064,6 +3148,9 @@ + + + @@ -3135,6 +3222,9 @@ + + + @@ -3245,6 +3335,9 @@ + + + @@ -3424,6 +3517,9 @@ + + + @@ -3795,6 +3891,9 @@ + + + @@ -3871,6 +3970,9 @@ + + + @@ -3972,6 +4074,9 @@ + + + @@ -4370,6 +4475,9 @@ + + + @@ -4564,6 +4672,9 @@ + + + @@ -4662,6 +4773,9 @@ + + + @@ -4736,6 +4850,9 @@ + + + @@ -4822,6 +4939,7 @@ + @@ -4853,6 +4971,7 @@ + @@ -4876,6 +4995,7 @@ + @@ -4988,6 +5108,7 @@ + @@ -5021,6 +5142,7 @@ + @@ -5075,6 +5197,8 @@ + + @@ -5150,6 +5274,7 @@ + @@ -5183,6 +5308,7 @@ + @@ -5209,6 +5335,7 @@ + @@ -5234,6 +5361,7 @@ + @@ -5256,6 +5384,7 @@ + @@ -5300,6 +5429,7 @@ + @@ -5341,6 +5471,7 @@ + @@ -5366,6 +5497,7 @@ + @@ -5391,6 +5523,7 @@ + @@ -5405,6 +5538,7 @@ + @@ -5448,6 +5582,7 @@ + @@ -5470,6 +5605,7 @@ + @@ -5513,6 +5649,7 @@ + @@ -5546,6 +5683,7 @@ + @@ -5582,6 +5720,7 @@ + @@ -5612,6 +5751,7 @@ + @@ -5643,6 +5783,7 @@ + @@ -5662,6 +5803,7 @@ + @@ -5680,6 +5822,7 @@ + @@ -5706,6 +5849,7 @@ + @@ -5732,6 +5876,7 @@ + @@ -5799,6 +5944,7 @@ + @@ -5822,6 +5968,7 @@ + @@ -5858,6 +6005,7 @@ + @@ -5917,6 +6065,7 @@ + @@ -6030,6 +6179,7 @@ + @@ -6054,6 +6204,7 @@ + @@ -6087,6 +6238,7 @@ + @@ -6209,6 +6361,7 @@ + @@ -6273,6 +6426,7 @@ + @@ -6305,6 +6459,7 @@ + @@ -6329,6 +6484,7 @@ + From 205900505bb308cbbed69b2a2b1739e5c8c6ebef Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Wed, 9 Sep 2015 02:26:40 -0700 Subject: [PATCH 54/58] Fix storage test for QosEvent writeError --- src/Common/Commands.Common/AzurePSCmdlet.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index 43555c5eb5f1..fece0560f2a5 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -407,9 +407,13 @@ protected bool IsVerbose() public new void WriteError(ErrorRecord errorRecord) { FlushDebugMessages(); - QosEvent.Exception = errorRecord.Exception; - QosEvent.IsSuccess = false; - LogQosEvent(true); + if (QosEvent != null && errorRecord != null) + { + QosEvent.Exception = errorRecord.Exception; + QosEvent.IsSuccess = false; + LogQosEvent(true); + } + base.WriteError(errorRecord); } From 4fe25e524fe0445fd7e4bb9852a8a6ec2b201fcb Mon Sep 17 00:00:00 2001 From: dominiqa Date: Thu, 10 Sep 2015 17:12:28 -0700 Subject: [PATCH 55/58] Fixing Cmdlet Help --- .../Microsoft.Azure.Commands.Sql.dll-Help.xml | 24775 ++++++++-------- 1 file changed, 12248 insertions(+), 12527 deletions(-) diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml index 9aec3209acdd..e87b2e47f386 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml +++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml @@ -1,12532 +1,12253 @@ - - - - - Get-AzureSqlDatabase - - Returns one or more Azure SQL Database. - - - - - Get - AzureSqlDatabase - - - - Use this cmdlet to retrieve one or more Azure SQL Database from an Azure SQL Database Server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabase - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" - - This example returns all databases on server, "server1". - - - - - - - - - - - - - - -------------------------- Code Example 2 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" - - This example returns database named "database1", from server "server1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - New-AzureSqlDatabase - - - - Remove-AzureSqlDatabase - - - - Set-AzureSqlDatabase - - - - - - - - Get-AzureSqlDatabaseActivity - - Gets the status of database operations in an elastic database pool. - - - - - Get - AzureSqlDatabaseActivity - - - - Gets the status of moving elastic databases in and out of an elastic pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseActivity - - ServerName - - The name of the Azure SQL Server that the elastic pool is in. - - String - - - ElasticPoolName - - The name of the Azure SQL elastic pool. - - String - - - DatabaseName - - - - String - - - OperationId - - - - Nullable`1[Guid] - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server that the elastic pool is in. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Server that the elastic pool is in. - - String - - String - - - none - - - ElasticPoolName - - The name of the Azure SQL elastic pool. - - String - - String - - - none - - - DatabaseName - - - - String - - String - - - - - - OperationId - - - - Nullable`1[Guid] - - Nullable`1[Guid] - - - - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server that the elastic pool is in. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - The following example returns the operation status of all databases in an elastic pool named "elasticpool1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Get-AzureSqlDatabaseAuditingPolicy - - Gets an Azure SQL Database's auditing policy. - - - - - Get - AzureSqlDatabaseAuditingPolicy - - - - The Get-AzureSqlDatabaseAuditingPolicy cmdlet gets the auditing policy of an Azure Sql database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseAuditingPolicy - - ServerName - - The name of the server that contains the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group that contains the database. - - String - - - Profile - - In-Memory profile. - - AzureProfile - - - - - - ServerName - - The name of the server that contains the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group that contains the database. - - String - - String - - - none - - - Profile - - In-Memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - Code Example Description - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Remove-AzureSqlDatabaseAuditing - - - - Set-AzureSqlDatabaseAuditingPolicy - - - - - - - - Get-AzureSqlDatabaseDataMaskingPolicy - - Gets an Azure SQL Database's data masking policy. - - - - - Get - AzureSqlDatabaseDataMaskingPolicy - - - - The Get-AzureSqlDatabaseDataMaskingPolicy cmdlet gets the data masking policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseDataMaskingPolicy - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseDataMaskingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlDatabaseDataMaskingRule - - - - New-AzureSqlDatabaseDataMaskingRule - - - - Remove-AzureSqlDatabaseDataMaskingRule - - - - Set-AzureSqlDatabaseDataMaskingPolicy - - - - Set-AzureSqlDatabaseDataMaskingRule - - - - - - - - Get-AzureSqlDatabaseDataMaskingRule - - Gets an Azure SQL Database's data masking rule. - - - - - Get - AzureSqlDatabaseDataMaskingRule - - - - The Get-AzureSqlDatabaseDataMaskingRule cmdlet gets either a specific data masking rule, or all of the data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, and the RuleId to specify which rule this cmdlet returns. If no RuleId is provided, then all the data masking rules of that Azure SQL Database are returned. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseDataMaskingRule - - RuleId - - The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. - - String - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - RuleId - - The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. - - String - - String - - - none - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseDataMaskingRule –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - This example returns all data masking rules for "database1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlDatabaseDataMaskingPolicy - - - - New-AzureSqlDatabaseDataMaskingRule - - - - Remove-AzureSqlDatabaseDataMaskingRule - - - - Set-AzureSqlDatabaseDataMaskingPolicy - - - - Set-AzureSqlDatabaseDataMaskingRule - - - - - - - - Get-AzureSqlDatabaseExpanded - - - - - - - Get - AzureSqlDatabaseExpanded - - - - - - - - Get-AzureSqlDatabaseExpanded - - ServerName - - - - String - - - DatabaseName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSqlDatabaseIndexRecommendations - - - - - - - Get - AzureSqlDatabaseIndexRecommendations - - - - - - - - Get-AzureSqlDatabaseIndexRecommendations - - ServerName - - - - String - - - DatabaseName - - - - String - - - TableName - - - - String - - - IndexRecommendationName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - TableName - - - - String - - String - - - - - - IndexRecommendationName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSqlDatabaseReplicationLink - - Gets the geo-replication links between an Azure SQL Database and the specified Azure Resource Group or Azure SQL Server. - - - - - Get - AzureSqlDatabaseReplicationLink - - - - This cmdlet replaces the Get-AzureSqlDatabaseCopy cmdlet. It will return all geo-replication links between the specified Azure Resource Group or Azure SQL Server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseReplicationLink - - DatabaseName - - The name of the Azure SQL Database to retrieve links for. - - String - - - PartnerResourceGroupName - - The name of the Azure Resource Group for the partner. - - String - - - ServerName - - The name of the Azure SQL Server for the database to retrieve links for. - - String - - - ResourceGroupName - - The name of the Azure Resource Group for the database to retrieve links for. - - String - - - Profile - - - - AzureProfile - - - - Get-AzureSqlDatabaseReplicationLink - - DatabaseName - - The name of the Azure SQL Database to retrieve links for. - - String - - - PartnerResourceGroupName - - The name of the Azure Resource Group for the partner. - - String - - - PartnerServerName - - The name of the Azure SQL Server for the partner. - - String - - - ServerName - - The name of the Azure SQL Server for the database to retrieve links for. - - String - - - ResourceGroupName - - The name of the Azure Resource Group for the database to retrieve links for. - - String - - - Profile - - - - AzureProfile - - - - - - DatabaseName - - The name of the Azure SQL Database to retrieve links for. - - String - - String - - - - - - PartnerResourceGroupName - - The name of the Azure Resource Group for the partner. - - String - - String - - - - - - ServerName - - The name of the Azure SQL Server for the database to retrieve links for. - - String - - String - - - - - - ResourceGroupName - - The name of the Azure Resource Group for the database to retrieve links for. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - PartnerServerName - - The name of the Azure SQL Server for the partner. - - String - - String - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - Get-AzureSqlDatabaseRestorePoints - - - - - - - Get - AzureSqlDatabaseRestorePoints - - - - - - - - Get-AzureSqlDatabaseRestorePoints - - ServerName - - - - String - - - DatabaseName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSqlDatabaseSecureConnectionPolicy - - Returns the secure connection policy of an Azure SQL Database. - - - - - Get - AzureSqlDatabaseSecureConnectionPolicy - - - - The Get-AzureSqlDatabaseSecureConnectionPolicy cmdlet returns the secure connection policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet it returns an object describing the current secure connection policy as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseSecureConnectionPolicy - - ServerName - - The name of server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ServerName - - The name of server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseSecureConnectionPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - Code Example Description - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Get-AzureSqlDatabaseTransparentDataEncryption - - Gets the Transparent Data Encryption State for an Azure SQL Database. - - - - - Get - AzureSqlDatabaseTransparentDataEncryption - - - - Use this cmdlet to retrieve the Transparent Data Encryption state from an Azure SQL Database. Use the ResourceGroupName, ServerName, and DatabaseName parameters to identify the database. The return object indicates encryption state of the Azure SQL database, and reflects the state last set by the user. When the state is "Enabled" the Azure SQL Database can still be encrypting as encryption can be a long running asynchronous job. When the state is "Disabled" the Azure SQL Database can still be decrypting because this is a long running asynchronous job. To view the encryption scan progress please use Get-AzureSqlDatabaseTransparentDataEncryptionActivity. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseTransparentDataEncryption - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - String - - - - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - String - - - - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - - - - - - - - - OutputType - - - - - Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" - - This example returns the transparent database encryption state for the database named "database1", from server "server1". - - - PS C:\>Get-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + + + + + Disable-AzureSqlDatabaseDirectAccess + + Disables the option to directly access an Azure SQL Database (without auditing). + + + + + Disable + AzureSqlDatabaseDirectAccess + + + + The Disable-AzureSqlDatabaseDirectAccess cmdlet disables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet, directly accessing an Azure Sql Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Disable-AzureSqlDatabaseDirectAccess + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + Specifies the name of the database server holding the database. + + String + + + DatabaseName + + Specifies the name of the database. Wildcards are not permitted. + + String + + + ResourceGroupName + + Specifies the name of the resource group of the database. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + Specifies the name of the database server holding the database. + + String + + String + + + none + + + DatabaseName + + Specifies the name of the database. Wildcards are not permitted. + + String + + String + + + none + + + ResourceGroupName + + Specifies the name of the resource group of the database. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Disable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Enable-AzureSqlDatabaseDirectAccess + + + + + + + + Enable-AzureSqlDatabaseDirectAccess + + Enables the option to directly access an Azure SQL Database (with auditing). + + + + + Enable + AzureSqlDatabaseDirectAccess + + + + The Enable-AzureSqlDatabaseDirectAccess cmdlet enables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, directly accessing to an Azure SQL Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName). + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Enable-AzureSqlDatabaseDirectAccess + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + Specifies the name of the resource group of the database. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + Specifies the name of the resource group of the database. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Enable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Disable-AzureSqlDatabaseDirectAccess + + + + + + + + Get-AzureSqlDatabase + + Returns one or more Azure SQL Database. + + + + + Get + AzureSqlDatabase + + + + Use this cmdlet to retrieve one or more Azure SQL Database from an Azure SQL Database Server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabase + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" + + This example returns all databases on server, "server1". + + + + + + + + + + + + + + -------------------------- Code Example 2 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + This example returns database named "database1", from server "server1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + New-AzureSqlDatabase + + + + Remove-AzureSqlDatabase + + + + Set-AzureSqlDatabase + + + + + + + + Get-AzureSqlDatabaseActivity + + + + + + + Get + AzureSqlDatabaseActivity + + + + + + + + Get-AzureSqlDatabaseActivity + + ServerName + + + + String + + + ElasticPoolName + + + + String + + + DatabaseName + + + + String + + + OperationId + + + + Nullable`1[Guid] + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ServerName + + + + String + + String + + + + + + ElasticPoolName + + + + String + + String + + + + + + DatabaseName + + + + String + + String + + + + + + OperationId + + + + Nullable`1[Guid] + + Nullable`1[Guid] + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureSqlDatabaseAuditingPolicy + + Gets an Azure SQL Database's auditing policy. + + + + + Get + AzureSqlDatabaseAuditingPolicy + + + + The Get-AzureSqlDatabaseAuditingPolicy cmdlet gets the auditing policy of an Azure Sql database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseAuditingPolicy + + ServerName + + The name of the server that contains the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group that contains the database. + + String + + + Profile + + In-Memory profile. + + AzureProfile + + + + + + ServerName + + The name of the server that contains the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group that contains the database. + + String + + String + + + none + + + Profile + + In-Memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Remove-AzureSqlDatabaseAuditing + + + + Set-AzureSqlDatabaseAuditingPolicy + + + + + + + + Get-AzureSqlDatabaseDataMaskingPolicy + + Gets an Azure SQL Database's data masking policy. + + + + + Get + AzureSqlDatabaseDataMaskingPolicy + + + + The Get-AzureSqlDatabaseDataMaskingPolicy cmdlet gets the data masking policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseDataMaskingPolicy + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseDataMaskingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlDatabaseDataMaskingRule + + + + New-AzureSqlDatabaseDataMaskingRule + + + + Remove-AzureSqlDatabaseDataMaskingRule + + + + Set-AzureSqlDatabaseDataMaskingPolicy + + + + Set-AzureSqlDatabaseDataMaskingRule + + + + + + + + Get-AzureSqlDatabaseDataMaskingRule + + Gets an Azure SQL Database's data masking rule. + + + + + Get + AzureSqlDatabaseDataMaskingRule + + + + The Get-AzureSqlDatabaseDataMaskingRule cmdlet gets either a specific data masking rule, or all of the data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, and the RuleId to specify which rule this cmdlet returns. If no RuleId is provided, then all the data masking rules of that Azure SQL Database are returned. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseDataMaskingRule + + RuleId + + The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + RuleId + + The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. + + String + + String + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseDataMaskingRule –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + This example returns all data masking rules for "database1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlDatabaseDataMaskingPolicy + + + + New-AzureSqlDatabaseDataMaskingRule + + + + Remove-AzureSqlDatabaseDataMaskingRule + + + + Set-AzureSqlDatabaseDataMaskingPolicy + + + + Set-AzureSqlDatabaseDataMaskingRule + + + + + + + + Get-AzureSqlDatabaseSecureConnectionPolicy + + Returns the secure connection policy of an Azure SQL Database. + + + + + Get + AzureSqlDatabaseSecureConnectionPolicy + + + + The Get-AzureSqlDatabaseSecureConnectionPolicy cmdlet returns the secure connection policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet it returns an object describing the current secure connection policy as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseSecureConnectionPolicy + + ServerName + + The name of server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + ServerName + + The name of server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseSecureConnectionPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Get-AzureSqlServerAuditingPolicy + + Gets an Azure SQL Server's auditing policy. + + + + + Get + AzureSqlServerAuditingPolicy + + + + The Get-AzureSqlServerAuditingPolicy cmdlet gets the auditing policy of an Azure SQL Server. To use the cmdlet, use the ResourceGroupName and the ServerName parameters to identify the database server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlServerAuditingPolicy + + ServerName + + The name of the server containing the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlServerAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" + + The following example returns the auditing policy for "server1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlDatabaseAuditingPolicy + + + + Remove-AzureSqlDatabaseAuditing + + + + Remove-AzureSqlServerAuditing + + + + Set-AzureSqlDatabaseAuditingPolicy + + + + Set-AzureSqlServerAuditingPolicy + + + + Use-AzureSqlServerAuditingPolicy + + + + + + + + Get-AzureSqlServerActiveDirectoryAdministrator + + Returns information about an Azure Active Directory administrator for Azure SQL Server in the current subscription. + + + + + Get + AzureSqlServerActiveDirectoryAdministrator + + + + The Get-AzureSqlServerActiveDirectoryAdministrator cmdlet returns information about an Azure Active Directory administrator for Azure SQL Server in the current subscription. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlServerActiveDirectoryAdministrator + + ServerName + + The name of the Azure SQL Server containing the Azure Active Directory administrator. + + String + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServerName + + The name of the Azure SQL Server containing the Azure Active Directory administrator. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + + System.String + + + + + + + + OutputType + + + + + + System.Object + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" + + Returns information about an Azure Active Directory administrator for Azure SQL Database Server "aad_managed_demo" associated with resource group "Group-23" + + + + ResourceGroupName ServerName DisplayName ObjectId + ----------------- ---------- ----------- -------- + Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + + + + + + + + + + + + Remove-AzureSqlServerActiveDirectoryAdministrator + + + + Set-AzureSqlServerActiveDirectoryAdministrator + + + + + + + + Get-AzureSqlDatabaseTransparentDataEncryption + + Gets the Transparent Data Encryption State for an Azure SQL Database. + + + + + Get + AzureSqlDatabaseTransparentDataEncryption + + + + Use this cmdlet to retrieve the Transparent Data Encryption state from an Azure SQL Database. Use the ResourceGroupName, ServerName, and DatabaseName parameters to identify the database. The return object indicates encryption state of the Azure SQL database, and reflects the state last set by the user. When the state is "Enabled" the Azure SQL Database can still be encrypting as encryption can be a long running asynchronous job. When the state is "Disabled" the Azure SQL Database can still be decrypting because this is a long running asynchronous job. To view the encryption scan progress please use Get-AzureSqlDatabaseTransparentDataEncryptionActivity. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseTransparentDataEncryption + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + String + + + + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + String + + + + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + + + + + + + + + OutputType + + + + + + Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + This example returns the transparent database encryption state for the database named "database1", from server "server1". + + + + PS C:\>Get-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -ResourceGroupName ServerName DatabaseName State ------------------ ---------- ------------ ----- -resourcegroup1 server1 database1 Disabled - - - - - - - - - - - - - Transparent Data Encryption with Azure SQL Database - https://msdn.microsoft.com/library/dn948096 - - - - - - - Get-AzureSqlDatabaseTransparentDataEncryptionActivity - - Gets the status of the Transparent Data Encryption Scan for an Azure SQL Database. - - - - - Get - AzureSqlDatabaseTransparentDataEncryptionActivity - - - - The Get-AzureSqlDatabaseTransparentDataEncryptionActivity Cmdlet gets the Transparent Data Encryption scan progress of an Azure SQL Database. Use the ResourceGroupName, ServerName, and DatabaseName parameters to identify the Azure SQL Database. The return object indicates if the Azure SQL Database is encrypting/decrypting, and what percentage is complete. If no encryption scan is occurring on the Azure SQL Database an empty list will be returned. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlDatabaseTransparentDataEncryptionActivity - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - String - - - - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - String - - - - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - - - - - - - - - OutputType - - - - - Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseTransparentDataEncryptionActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" - - This example returns the transparent database encryption scan progress for the database named "database1", from server "server1". - - - PS C:\>Get-AzureSqlDatabaseTransparentDataEncryptionActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + ResourceGroupName ServerName DatabaseName State + ----------------- ---------- ------------ ----- + resourcegroup1 server1 database1 Disabled + + + + + + + + + + + + + + Transparent Data Encryption with Azure SQL Database + https://msdn.microsoft.com/library/dn948096 + + + + + + + Get-AzureSqlDatabaseTransparentDataEncryptionActivity + + Gets the status of the Transparent Data Encryption Scan for an Azure SQL Database. + + + + + Get + AzureSqlDatabaseTransparentDataEncryptionActivity + + + + The Get-AzureSqlDatabaseTransparentDataEncryptionActivity Cmdlet gets the Transparent Data Encryption scan progress of an Azure SQL Database. Use the ResourceGroupName, ServerName, and DatabaseName parameters to identify the Azure SQL Database. The return object indicates if the Azure SQL Database is encrypting/decrypting, and what percentage is complete. If no encryption scan is occurring on the Azure SQL Database an empty list will be returned. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseTransparentDataEncryptionActivity + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + String + + + + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + String + + + + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + + + + + + + + + OutputType + + + + + + Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseTransparentDataEncryptionActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + This example returns the transparent database encryption scan progress for the database named "database1", from server "server1". + + + + PS C:\>Get-AzureSqlDatabaseTransparentDataEncryptionActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -ResourceGroupName : resourcegroup1 -ServerName : server1 -DatabaseName : database1 -Status : Encrypting -PercentComplete : 3.662109 - - - - - - - - - - - - - Transparent Data Encryption with Azure SQL Database - https://msdn.microsoft.com/library/dn948096 - - - - - - - Get-AzureSqlDatabaseUpgradeHint - - - - - - - Get - AzureSqlDatabaseUpgradeHint - - - - - - - - Get-AzureSqlDatabaseUpgradeHint - - ServerName - - - - String - - - DatabaseName - - - - String - - - ExcludeElasticPoolCandidates - - - - Boolean - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - ExcludeElasticPoolCandidates - - - - Boolean - - Boolean - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSqlElasticPool - - Gets the details for an Azure SQL elastic database pool. - - - - - Get - AzureSqlElasticPool - - - - Gets all elastic pools and their property values, or pass the name of an existing elastic pool and return only the property values for that pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlElasticPool - - ElasticPoolName - - The name of the Azure SQL elastic pool to retrieve. - - String - - - ServerName - - The name of the Azure SQL Server containing the elastic pool. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the elastic pool. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ElasticPoolName - - The name of the Azure SQL elastic pool to retrieve. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Server containing the elastic pool. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group of the server containing the elastic pool. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" - - This example returns all elastic pools on "server1". - - - - - - - - - - - - - - -------------------------- Example 2 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - This example returns the elastic pool named "elasticpool1" on "server1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - New-AzureSqlElasticPool - - - - Remove-AzureSqlElasticPool - - - - Set-AzureSqlElasticPool - - - - - - - - Get-AzureSqlElasticPoolActivity - - Gets the status of elastic database pool operations. - - - - - Get - AzureSqlElasticPoolActivity - - - - Provides the status of elastic pool operations including pool creation and configuration updates. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlElasticPoolActivity - - ServerName - - The name of the Azure SQL Server that the elastic pool is in. - - String - - - ElasticPoolName - - The name of the Azure SQL elastic pool. - - String - - - ResourceGroupName - - The name of the resource group containing the elastic pool. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Server that the elastic pool is in. - - String - - String - - - none - - - ElasticPoolName - - The name of the Azure SQL elastic pool. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the elastic pool. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlElasticPoolActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - The following example returns the operation status for the elastic pool named "elasticpool1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlElasticPool - - - - Get-AzureSqlElasticPoolDatabase - - - - Get-AzureSqlDatabaseActivity - - - - New-AzureSqlElasticPool - - - - Remove-AzureSqlElasticPool - - - - Set-AzureSqlElasticPool - - - - - - - - Get-AzureSqlElasticPoolDatabase - - Returns one or all elastic databases in an elastic database pool. - - - - - Get - AzureSqlElasticPoolDatabase - - - - Returns all elastic databases in an elastic pool and their property values, or provide the name of an elastic database and return only the property values for that database. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlElasticPoolDatabase - - ElasticPoolName - - The name of the Azure SQL elastic pool to retrieve. - - String - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - - ServerName - - The name of the Azure SQL Server that the elastic pool is in. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the elastic pool. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ElasticPoolName - - The name of the Azure SQL elastic pool to retrieve. - - String - - String - - - none - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Server that the elastic pool is in. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group of the server containing the elastic pool. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlElasticPoolDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - This example returns all databases in an elastic pool named "elasticpool1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlElasticPool - - - - Get-AzureSqlElasticPoolActivity - - - - Get-AzureSqlDatabaseActivity - - - - New-AzureSqlElasticPool - - - - Remove-AzureSqlElasticPool - - - - Set-AzureSqlElasticPool - - - - - - - - Get-AzureSqlElasticPoolRecommendation - - - - - - - Get - AzureSqlElasticPoolRecommendation - - - - - - - - Get-AzureSqlElasticPoolRecommendation - - ServerName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - ElasticPoolRecommendation - - - - string - - string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSqlServer - - Returns information about one or more Azure SQL Database Servers. - - - - - Get - AzureSqlServer - - - - If a SQL Database Server name is specified in the ServerName parameter, the cmdlet returns information about the specific SQL Database Server. Otherwise, it returns information about all the SQL Database Servers. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlServer - - ServerName - - The name of the Azure SQL Server to retrieve. - - String - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Server to retrieve. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1" - - Use this cmdlet to retrieve an Azure SQL Database Server named "server1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Get-AzureSqlServerActiveDirectoryAdministrator - - The Get-AzureSqlServerActiveDirectoryAdministrator cmdlet returns information about an Azure Active Directory administrator for an Azure SQL Server in the current subscription. - - - - - Get - AzureSqlServerActiveDirectoryAdministrator - - - - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlServerActiveDirectoryAdministrator - - ServerName - - The name of the Azure SQL Server containing the Azure Active Directory administrator. - - String - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Server containing the Azure Active Directory administrator. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - Get-AzureSqlServerAuditingPolicy - - Gets an Azure SQL Server's auditing policy. - - - - - Get - AzureSqlServerAuditingPolicy - - - - The Get-AzureSqlServerAuditingPolicy cmdlet gets the auditing policy of an Azure SQL Server. To use the cmdlet, use the ResourceGroupName and the ServerName parameters to identify the database server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlServerAuditingPolicy - - ServerName - - The name of the server containing the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlServerAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" - - The following example returns the auditing policy for "server1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlDatabaseAuditingPolicy - - - - Remove-AzureSqlDatabaseAuditing - - - - Remove-AzureSqlServerAuditing - - - - Set-AzureSqlDatabaseAuditingPolicy - - - - Set-AzureSqlServerAuditingPolicy - - - - Use-AzureSqlServerAuditingPolicy - - - - - - - - Get-AzureSqlServerFirewallRule - - Returns firewall rules for an Azure SQL Server. - - - - - Get - AzureSqlServerFirewallRule - - - - If a firewall rule name is specified in the FirewallRuleName parameter, the cmdlet returns information about the specific firewall rule. Otherwise, information about all the firewall rules in the specified Azure SQL Server are listed. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlServerFirewallRule - - FirewallRuleName - - The name of the firewall rule to retrieve. If not specified, information about all the firewall rules in the specified Azure SQL Server is listed. - - String - - - ServerName - - The name of the Azure SQL Server for which you want to retrieve the firewall rules. Specify only the server name, and not the fully qualified DNS name. - - String - - - ResourceGroupName - - The name of the resource group of the Azure SQL Server containing the firewall rules to retrieve. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - FirewallRuleName - - The name of the firewall rule to retrieve. If not specified, information about all the firewall rules in the specified Azure SQL Server is listed. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Server for which you want to retrieve the firewall rules. Specify only the server name, and not the fully qualified DNS name. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group of the Azure SQL Server containing the firewall rules to retrieve. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlServerFirewallRule –ResourceGroupName "resourcegroup1" –ServerName "server1" - - Code Example Description - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Get-AzureSqlServerServiceObjective - - Returns a list of service objectives for an Azure SQL Server. - - - - - Get - AzureSqlServerServiceObjective - - - - Returns available service objectives for an Azure SQL Server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlServerServiceObjective - - ServiceObjectiveName - - The Azure SQL Database service objective name. - - String - - - ServerName - - The name of the Azure SQL Server. - - String - - - DatabaseName - - The name of the Azure SQL Database. - - String - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServiceObjectiveName - - The Azure SQL Database service objective name. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Server. - - String - - String - - - none - - - DatabaseName - - The name of the Azure SQL Database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlServerServiceObjective –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" - - The following example returns the service objective. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Get-AzureSqlServerUpgrade - - Gets the status of an Azure SQL Server Upgrade. - - - - - Get - AzureSqlServerUpgrade - - - - The Get-AzureSqlServerUpgrade cmdlet returns the status of an Azure SQL Server Upgrade. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Get-AzureSqlServerUpgrade - - ServerName - - The name of the Azure SQL Server to get upgrade status. - - String - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the Azure SQL Server to get upgrade status. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - - - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1: Get status of a server upgrade -------------------------- - - PS C:\> - - Get-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer | Format-List - - Get the status of an upgrade request from server "MySqlServer" in resource group "MyResourceGroup". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Start-AzureSqlServerUpgrade - - - - Stop-AzureSqlServerUpgrade - - - - - - - - Get-AzureSqlServerUpgradeHint - - - - - - - Get - AzureSqlServerUpgradeHint - - - - - - - - Get-AzureSqlServerUpgradeHint - - ServerName - - - - String - - - ExcludeElasticPools - - - - Boolean - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - ExcludeElasticPools - - - - Boolean - - Boolean - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New-AzureSqlDatabase - - Creates a new Azure SQL Database, or new elastic database. - - - - - New - AzureSqlDatabase - - - - The New-AzureSqlDatabase cmdlet creates a new Azure SQL Database. -Create an elastic database by setting the ElasticPoolName to an existing elastic pool. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlDatabase - - DatabaseName - - The name of the Azure SQL Database to create. - - String - - - CollationName - - The name of the Azure SQL Database collation to use. - - String - - - CatalogCollation - - The name of the Azure SQL Database catalog collation to use. - - String - - - MaxSizeBytes - - The maximum size of the Azure SQL Database in bytes. - - Int64 - - - Edition - - The edition to assign to the Azure SQL Database. - - DatabaseEdition - - - RequestedServiceObjectiveName - - The name of the service objective to assign to the Azure SQL Database. - - String - - - ElasticPoolName - - The name of the elastic pool to put the database in. - - String - - - Tags - - The tags to associate to the Azure SQL Database Server. - - Dictionary`2[String] - - - ServerName - - Name of the Azure SQL Server to create the database in. - - String - - - ResourceGroupName - - Name of resource group that the Azure SQL Server is in. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - DatabaseName - - The name of the Azure SQL Database to create. - - String - - String - - - none - - - CollationName - - The name of the Azure SQL Database collation to use. - - String - - String - - - none - - - CatalogCollation - - The name of the Azure SQL Database catalog collation to use. - - String - - String - - - none - - - MaxSizeBytes - - The maximum size of the Azure SQL Database in bytes. - - Int64 - - Int64 - - - none - - - Edition - - The edition to assign to the Azure SQL Database. - - DatabaseEdition - - DatabaseEdition - - - none - - - RequestedServiceObjectiveName - - The name of the service objective to assign to the Azure SQL Database. - - String - - String - - - none - - - ElasticPoolName - - The name of the elastic pool to put the database in. - - String - - String - - - none - - - Tags - - The tags to associate to the Azure SQL Database Server. - - Dictionary`2[String] - - Dictionary`2[String] - - - none - - - ServerName - - Name of the Azure SQL Server to create the database in. - - String - - String - - - none - - - ResourceGroupName - - Name of resource group that the Azure SQL Server is in. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1 -------------------------- - - PS C:\> - - PS C:\>New-AzureSqlDatabase –ResourceGroupName "resourceGroup1" –ServerName "server1" –DatabaseName "db1" - - The following command creates a database named "db1" in server "Server1". - - - - - - - - - - - - - - -------------------------- Example 2 -------------------------- - - PS C:\> - - PS C:\>New-AzureSqlDatabase -ResourceGroupName "resourcegroup1" -ServerName "server1" -DatabaseName "database1" -ElasticPoolName "elasticpool1" - - The following command creates a database named "database1" in the elastic pool named "elasticpool1" in server "server1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - New-AzureSqlServer - - - - New-AzureSqlElasticPool - - - - - - - - New-AzureSqlDatabaseCopy - - Creates a copy of an existing Azure SQL Database using the snapshot of the data at the time of the call. - - - - - New - AzureSqlDatabaseCopy - - - - This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used to create a one-time database copy. It returns the database object of the copy. - Note: Use New-AzureSqlDatabaseSecondary for setting up geo-replication for a database. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlDatabaseCopy - - DatabaseName - - The name of the Azure SQL Database to be copied. - - String - - - ServiceObjectiveName - - The name of the service objective to assign to the copy. - - String - - - ElasticPoolName - - The name of the Elastic Pool to put the copy in. - - String - - - Tags - - The tags to associate with the Azure SQL Database copy. - - Dictionary`2[String] - - - CopyResourceGroupName - - The name of the Azure Resource Group to create copy in. - - String - - - CopyServerName - - The name of the Azure SQL Server to create copy in. - - String - - - CopyDatabaseName - - The name of the Azure SQL Database copy. - - String - - - ServerName - - The name of the Azure SQL Server the database to be copied is in. - - String - - - ResourceGroupName - - The name of the Azure Resource Group the database to be copied is in. - - String - - - Profile - - - - AzureProfile - - - - - - DatabaseName - - The name of the Azure SQL Database to be copied. - - String - - String - - - - - - ServiceObjectiveName - - The name of the service objective to assign to the copy. - - String - - String - - - - - - ElasticPoolName - - The name of the Elastic Pool to put the copy in. - - String - - String - - - - - - Tags - - The tags to associate with the Azure SQL Database copy. - - Dictionary`2[String] - - Dictionary`2[String] - - - - - - CopyResourceGroupName - - The name of the Azure Resource Group to create copy in. - - String - - String - - - - - - CopyServerName - - The name of the Azure SQL Server to create copy in. - - String - - String - - - - - - CopyDatabaseName - - The name of the Azure SQL Database copy. - - String - - String - - - - - - ServerName - - The name of the Azure SQL Server the database to be copied is in. - - String - - String - - - - - - ResourceGroupName - - The name of the Azure Resource Group the database to be copied is in. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - New-AzureSqlDatabaseDataMaskingRule - - Creates a new Azure SQL Database's data masking rule. - - - - - New - AzureSqlDatabaseDataMaskingRule - - - - The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify thetarget of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlDatabaseDataMaskingRule - - ColumnName - - The name of the column that is the target of this masking rule. - - String - - - SchemaName - - - - String - - - TableName - - The name of the table in the database to apply the rule. - - String - - - MaskingFunction - - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. - - String - - - PrefixSize - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - ReplacementString - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - String - - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - NumberFrom - - When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. - - Nullable`1[Double] - - - NumberTo - - When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. - - Nullable`1[Double] - - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - RuleId - - The identifier for this data masking rule. - - String - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ColumnName - - The name of the column that is the target of this masking rule. - - String - - String - - - none - - - SchemaName - - - - String - - String - - - - - - TableName - - The name of the table in the database to apply the rule. - - String - - String - - - none - - - MaskingFunction - - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. - - String - - String - - - none - - - PrefixSize - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - Nullable`1[UInt32] - - - none - - - ReplacementString - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - String - - String - - - none - - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - Nullable`1[UInt32] - - - none - - - NumberFrom - - When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. - - Nullable`1[Double] - - Nullable`1[Double] - - - none - - - NumberTo - - When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. - - Nullable`1[Double] - - Nullable`1[Double] - - - none - - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - RuleId - - The identifier for this data masking rule. - - String - - String - - - none - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - AliasName - - The name of the alias that is the target of this masking rule. - - string - - string - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help New-AzureSqlDatabaseDataMaskingRule - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - New-AzureSqlDatabaseSecondary - - Creates a new secondary database for an existing Azure SQL Database and starts data replication. - - - - - New - AzureSqlDatabaseSecondary - - - - This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used for setting up geo-replication for a database. It returns the geo-replication link object from the primary to the secondary database. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlDatabaseSecondary - - DatabaseName - - The name of the Azure SQL Database to act as primary. - - String - - - SecondaryServiceObjectiveName - - The name of the service objective to assign to the secondary. - - String - - - SecondaryElasticPoolName - - The name of the Elastic Pool to put the secondary in. - - String - - - Tags - - The tags to associate with the Azure SQL Database replication link. - - Dictionary`2[String] - - - PartnerResourceGroupName - - The name of the Azure Resource Group to create secondary in. - - String - - - PartnerServerName - - The name of the Azure SQL Server to create secondary in. - - String - - - AllowConnections - - The read intent of the secondary Azure SQL Database. - - AllowConnections - - - ServerName - - The name of the Azure SQL Server of the primary Azure SQL Database. - - String - - - ResourceGroupName - - The name of the Azure Resource Group of the primary Azure SQL Database. - - String - - - Profile - - - - AzureProfile - - - - - - DatabaseName - - The name of the Azure SQL Database to act as primary. - - String - - String - - - - - - SecondaryServiceObjectiveName - - The name of the service objective to assign to the secondary. - - String - - String - - - - - - SecondaryElasticPoolName - - The name of the Elastic Pool to put the secondary in. - - String - - String - - - - - - Tags - - The tags to associate with the Azure SQL Database replication link. - - Dictionary`2[String] - - Dictionary`2[String] - - - - - - PartnerResourceGroupName - - The name of the Azure Resource Group to create secondary in. - - String - - String - - - - - - PartnerServerName - - The name of the Azure SQL Server to create secondary in. - - String - - String - - - - - - AllowConnections - - The read intent of the secondary Azure SQL Database. - - AllowConnections - - AllowConnections - - - - - - ServerName - - The name of the Azure SQL Server of the primary Azure SQL Database. - - String - - String - - - - - - ResourceGroupName - - The name of the Azure Resource Group of the primary Azure SQL Database. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - New-AzureSqlElasticPool - - Creates a new Azure SQL Database elastic database pool. - - - - - New - AzureSqlElasticPool - - - - This cmdlet creates a new elastic database pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlElasticPool - - ElasticPoolName - - The name of the Azure SQL elastic pool to create. - - String - - - Edition - - The edition to assign to the Azure SQL elastic pool. -For the current preview, the edition must be "Standard". - - DatabaseEdition - - - Dtu - - The total shared DTU for the Azure SQL elastic pool. - - Int32 - - - StorageMB - - The storage limit for the Azure SQL elastic pool in MB. - - Int64 - - - DatabaseDtuMin - - The minimum DTU that all Azure SQL Databases in the pool are guaranteed to have available. - - Int32 - - - DatabaseDtuMax - - The maximum DTU that any one Azure SQL Database in the pool can consume. - - Int32 - - - Tags - - The tags to associate with the Azure SQL elastic pool. - - Dictionary`2[String] - - - ServerName - - Name of the Azure SQL Server to create the elastic pool in. - - String - - - ResourceGroupName - - Name of resource group containing the Azure SQL Server to create the elastic pool in. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ElasticPoolName - - The name of the Azure SQL elastic pool to create. - - String - - String - - - none - - - Edition - - The edition to assign to the Azure SQL elastic pool. -For the current preview, the edition must be "Standard". - - DatabaseEdition - - DatabaseEdition - - - none - - - Dtu - - The total shared DTU for the Azure SQL elastic pool. - - Int32 - - Int32 - - - none - - - StorageMB - - The storage limit for the Azure SQL elastic pool in MB. - - Int64 - - Int64 - - - none - - - DatabaseDtuMin - - The minimum DTU that all Azure SQL Databases in the pool are guaranteed to have available. - - Int32 - - Int32 - - - none - - - DatabaseDtuMax - - The maximum DTU that any one Azure SQL Database in the pool can consume. - - Int32 - - Int32 - - - none - - - Tags - - The tags to associate with the Azure SQL elastic pool. - - Dictionary`2[String] - - Dictionary`2[String] - - - none - - - ServerName - - Name of the Azure SQL Server to create the elastic pool in. - - String - - String - - - none - - - ResourceGroupName - - Name of resource group containing the Azure SQL Server to create the elastic pool in. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>New-AzureSqlElasticPool -ResourceGroupName "resourcegroup1" -ServerName "server1" -ElasticPoolName "elasticpool1" -Edition "Standard" -Dtu 400 -DatabaseDtuMin 10 -DatabaseDtuMax 100 - - The following command creates an elastic pool in the Standard service tier named "elasticpool1" in the server named "server1" within an Azure resource group named "resourcegroup1", and specifies DTU property values for the pool and it’s databases. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlElasticPool - - - - Get-AzureSqlElasticPoolActivity - - - - Get-AzureSqlElasticPoolDatabase - - - - Get-AzureSqlDatabaseActivity - - - - Remove-AzureSqlElasticPool - - - - Set-AzureSqlElasticPool - - - - - - - - New-AzureSqlServer - - Creates a new Azure SQL Database server. - - - - - New - AzureSqlServer - - - - The New-AzureSqlDatabaseServer cmdlet creates a new Azure SQL server. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlServer - - ServerName - - The name of the new Azure SQL Server to create. - - String - - - SqlAdministratorCredentials - - - - PSCredential - - - Location - - The data center location where the Azure SQL Server will be created. - - String - - - Tags - - The tags to associate with the Azure SQL Server. - - Dictionary`2[String] - - - ServerVersion - - The version of the new Azure SQL Server. Valid values are 2.0, or 12.0. - Use 2.0 to create a V11 server, or 12.0 to create a V11 server. - - String - - - ResourceGroupName - - The name of the resource group to create the Azure SQL Server in. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerName - - The name of the new Azure SQL Server to create. - - String - - String - - - none - - - SqlAdministratorCredentials - - - - PSCredential - - PSCredential - - - - - - Location - - The data center location where the Azure SQL Server will be created. - - String - - String - - - none - - - Tags - - The tags to associate with the Azure SQL Server. - - Dictionary`2[String] - - Dictionary`2[String] - - - none - - - ServerVersion - - The version of the new Azure SQL Server. Valid values are 2.0, or 12.0. - Use 2.0 to create a V11 server, or 12.0 to create a V11 server. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group to create the Azure SQL Server in. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - SqlAdminCredentials - - The SQL administrator credentials for the new server. - - pscredential - - pscredential - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>New-AzureSqlServer -ResourceGroupName "resourcegroup1" -ServerName "server1" -Location "West US" -ServerVersion "12.0" - - This command creates a new Azure SQL V12 Server. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlServer - - - - Remove-AzureSqlServer - - - - Set-AzureSqlServer - - - - New-AzureSqlServerFirewallRule - - - - - - - - New-AzureSqlServerFirewallRule - - Creates a new firewall rule for an Azure SQL Database server. - - - - - New - AzureSqlServerFirewallRule - - - - The New-AzureSqlServerFirewallRule cmdlet creates a new firewall rule for the specified SQL Database server. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - New-AzureSqlServerFirewallRule - - FirewallRuleName - - The name of the new firewall rule. - - String - - - StartIpAddress - - Start value of the IP address range. - - String - - - EndIpAddress - - End value of the IP address range. - - String - - - ServerName - - The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. - - String - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - New-AzureSqlServerFirewallRule - - AllowAllAzureIPs - - Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server. - - SwitchParameter - - - ServerName - - The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. - - String - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - FirewallRuleName - - The name of the new firewall rule. - - String - - String - - - none - - - StartIpAddress - - Start value of the IP address range. - - String - - String - - - none - - - EndIpAddress - - End value of the IP address range. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - AllowAllAzureIPs - - Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server. - - SwitchParameter - - SwitchParameter - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>New-AzureSqlServerFirewallRule -ResourceGroupName "resourcegroup1" -ServerName "server1" -FirewallRuleName "rule1" -StartIpAddress "192.168.0.198" -EndIpAddress "192.168.0.199" - - The following example creates a new firewall rule. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlServerFirewallRule - - - - Remove-AzureSqlServerFirewallRule - - - - Set-AzureSqlServerFirewallRule - - - - - - - - Remove-AzureSqlDatabase - - Deletes an Azure SQL Database. - - - - - Remove - AzureSqlDatabase - - - - The Remove-AzureSqlDatabase cmdlet deletes an Azure SQL Database. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlDatabase - - DatabaseName - - The name of the Azure SQL Database to remove. - - String - - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - - ServerName - - The name of the Azure SQL Server the database is in. - - String - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server that contains the Azure SQL Database to remove. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - DatabaseName - - The name of the Azure SQL Database to remove. - - String - - String - - - none - - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - The name of the Azure SQL Server the database is in. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server that contains the Azure SQL Database to remove. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Remove-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" - - The following code example deletes an Azure SQL Database. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Remove-AzureSqlDatabaseAuditing - - Disables an Azure Sql database's auditing. - - - - - Remove - AzureSqlDatabaseAuditing - - - - The Remove-AzureSqlDatabaseAuditing cmdlet disables the auditing of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlDatabaseAuditing - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Remove-AzureSqlDatabaseAuditing - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Remove-AzureSqlDatabaseDataMaskingRule - - Removes an Azure SQL Database's data masking rule. - - - - - Remove - AzureSqlDatabaseDataMaskingRule - - - - The Remove-AzureSqlDatabaseDataMaskingRule cmdlet removes a specific data masking rule. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and RuleId parameters to identify the rule to be removed. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlDatabaseDataMaskingRule - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - Force - - Allows the action to complete without prompting you for confirmation. - - SwitchParameter - - - RuleId - - The identifier for the data masking rule. - - String - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - Thhhe name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - Force - - Allows the action to complete without prompting you for confirmation. - - SwitchParameter - - SwitchParameter - - - none - - - RuleId - - The identifier for the data masking rule. - - String - - String - - - none - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - Thhhe name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.Cmdlet Remark - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Remove-AzureSqlDatabaseDataMaskingRule - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Remove-AzureSqlDatabaseSecondary - - Terminates data replication between an Azure SQL Database and the specified secondary database. - - - - - Remove - AzureSqlDatabaseSecondary - - - - This cmdlet replaces the Stop-AzureSqlDatabaseCopy cmdlet. It will force terminates the geo-replication link. There is no replication synchronization prior to termination. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlDatabaseSecondary - - DatabaseName - - The name of the primary Azure SQL Database with the replication link to remove. - - String - - - PartnerResourceGroupName - - The name of the partner Azure Resource Group. - - String - - - PartnerServerName - - The name of the partner Azure SQL Server. - - String - - - ServerName - - The name of the Azure SQL Server with the replication link to remove. - - String - - - ResourceGroupName - - The name of the Azure Resource Group with the replication link to remove. - - String - - - Profile - - - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - DatabaseName - - The name of the primary Azure SQL Database with the replication link to remove. - - String - - String - - - - - - PartnerResourceGroupName - - The name of the partner Azure Resource Group. - - String - - String - - - - - - PartnerServerName - - The name of the partner Azure SQL Server. - - String - - String - - - - - - ServerName - - The name of the Azure SQL Server with the replication link to remove. - - String - - String - - - - - - ResourceGroupName - - The name of the Azure Resource Group with the replication link to remove. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - Remove-AzureSqlElasticPool - - Deletes an Azure SQL elastic database pool. - - - - - Remove - AzureSqlElasticPool - - - - The Remove-AzureSqlElasticPool cmdlet deletes an elastic pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlElasticPool - - ElasticPoolName - - The name of the elastic pool to delete. - - String - - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - - ServerName - - Name of the Azure SQL Server containing the elastic pool to remove. - - String - - - ResourceGroupName - - Name of resource group of the Azure SQL Server containing the elastic pool to remove. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - ElasticPoolName - - The name of the elastic pool to delete. - - String - - String - - - none - - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - Name of the Azure SQL Server containing the elastic pool to remove. - - String - - String - - - none - - - ResourceGroupName - - Name of resource group of the Azure SQL Server containing the elastic pool to remove. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>Remove-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - The following command deletes an elastic pool named "elasticpool1": - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlElasticPool - - - - Get-AzureSqlElasticPoolActivity - - - - Get-AzureSqlElasticPoolDatabase - - - - Get-AzureSqlDatabaseActivity - - - - New-AzureSqlElasticPool - - - - Set-AzureSqlElasticPool - - - - - - - - Remove-AzureSqlServer - - Removes an Azure SQL Server. - - - - - Remove - AzureSqlServer - - - - The Remove-AzureSqlServer cmdlet removes an Azure SQL Server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlServer - - ServerName - - The name of the Azure SQL Server to remove. - - String - - - Force - - Skip confirmation message and remove the Azure SQL Server. - - SwitchParameter - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server to remove. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - ServerName - - The name of the Azure SQL Server to remove. - - String - - String - - - none - - - Force - - Skip confirmation message and remove the Azure SQL Server. - - SwitchParameter - - SwitchParameter - - - none - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server to remove. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Remove-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1" - - The following example removes "server1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Remove-AzureSqlServerActiveDirectoryAdministrator - - Removes an Azure Active Directory administrator for Azure SQL Server in the current subscription. - - - - - Remove - AzureSqlServerActiveDirectoryAdministrator - - - - The Remove-AzureSqlServerActiveDirectoryAdministrator cmdlet removes an Azure Active Directory administrator for Azure SQL Server in the current subscription. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlServerActiveDirectoryAdministrator - - Force - - Skip confirmation message and remove the Azure SQL Server. - - SwitchParameter - - - ServerName - - The name of the Azure SQL Server to remove. - - String - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server to remove. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - Force - - Skip confirmation message and remove the Azure SQL Server. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - The name of the Azure SQL Server to remove. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server to remove. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - Remove-AzureSqlServerAuditing - - Disables auditing of all the databases that rely on the auditing policy of the given database server. - - - - - Remove - AzureSqlServerAuditing - - - - The Remove-AzureSqlServerAuditing cmdlet disables auditing of all the databases that rely on the auditing policy of the given database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server. After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database server identifiers (i.e. ResourceGroupName and ServerName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlServerAuditing - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - ServerName - - The name of the server. - - String - - - ResourceGroupName - - The name of the resource group containing the server. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - The name of the server. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the server. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Remove-AzureSqlServerAuditing -Full - - Code Example Description - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Remove-AzureSqlServerFirewallRule - - Deletes a firewall rule from an Azure SQL Database Server. - - - - - Remove - AzureSqlServerFirewallRule - - - - The Remove-AzureSqlDatabaseServerFirewallRule cmdlet deletes a firewall rule from the specified SQL Database Server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Remove-AzureSqlServerFirewallRule - - FirewallRuleName - - The SQL Database firewall rule name to be deleted. - - String - - - Force - - Allows the action to complete without prompting you for confirmation. - - SwitchParameter - - - ServerName - - The name of the server containing the firewall rule you want to delete. - - String - - - ResourceGroupName - - The name of the ARM resource group of the server containing the firewall rule you want to delete. - - String - - - Profile - - - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - FirewallRuleName - - The SQL Database firewall rule name to be deleted. - - String - - String - - - none - - - Force - - Allows the action to complete without prompting you for confirmation. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - The name of the server containing the firewall rule you want to delete. - - String - - String - - - none - - - ResourceGroupName - - The name of the ARM resource group of the server containing the firewall rule you want to delete. - - String - - String - - - none - - - Profile - - - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -New InputType - - - - - - - OutputType - - - - - -New OutputType - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Remove-AzureSqlServerFirewallRule –FirewallRuleName "rule1" –ResourceGroupName "resourcegroup1" –ServerName "server1" - - Code Example Description - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlServerFirewallRule - - - - New-AzureSqlServerFirewallRule - - - - Set-AzureSqlServerFirewallRule - - - - - - - - Resume-AzureSqlDatabase - - - - - - - Resume - AzureSqlDatabase - - - - - - - - Resume-AzureSqlDatabase - - ServerName - - - - String - - - DatabaseName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Set-AzureSqlDatabase - - Updates properties for an Azure SQL Database, or moves an existing database into an elastic pool. - - - - - Set - AzureSqlDatabase - - - - The Set-AzureSqlDatabase cmdlet sets properties for an Azure SQL Database. -Set the ElasticPoolName parameter to move a database into an elastic pool. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlDatabase - - DatabaseName - - The name of the Azure SQL Database to modify. - - String - - - MaxSizeBytes - - If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. - - Int64 - - - Edition - - If specified, the new edition for the Azure SQL Database. - - DatabaseEdition - - - RequestedServiceObjectiveName - - The name of the service objective to assign to the Azure SQL Database. - - String - - - ElasticPoolName - - The name of the Azure SQL elastic pool to put the database in. - - String - - - Tags - - The tags to associate with the Azure SQL Database. - - Dictionary`2[String] - - - ServerName - - Name of the Azure SQL Server that contains the Azure SQL Database. - - String - - - ResourceGroupName - - Name of resource group of the Azure SQL Server that contains the Azure SQL Database. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - DatabaseName - - The name of the Azure SQL Database to modify. - - String - - String - - - none - - - MaxSizeBytes - - If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. - - Int64 - - Int64 - - - none - - - Edition - - If specified, the new edition for the Azure SQL Database. - - DatabaseEdition - - DatabaseEdition - - - none - - - RequestedServiceObjectiveName - - The name of the service objective to assign to the Azure SQL Database. - - String - - String - - - none - - - ElasticPoolName - - The name of the Azure SQL elastic pool to put the database in. - - String - - String - - - none - - - Tags - - The tags to associate with the Azure SQL Database. - - Dictionary`2[String] - - Dictionary`2[String] - - - none - - - ServerName - - Name of the Azure SQL Server that contains the Azure SQL Database. - - String - - String - - - none - - - ResourceGroupName - - Name of resource group of the Azure SQL Server that contains the Azure SQL Database. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example1 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –DatabaseName "database1" –ServerName "server1" –Edition "Standard" –RequestedServiceObjectiveName "S2" - - The following command updates a database named "database1" to a Standard S2 database. - - - - - - - - - - - - - - -------------------------- Example2 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –DatabaseName "database1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - The following command adds a database named "database1" to the elastic pool named "elasticpool1". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Set-AzureSqlDatabaseAuditingPolicy - - Sets an Azure SQL Database's auditing policy. - - - - - Set - AzureSqlDatabaseAuditingPolicy - - - - The Set-AzureSqlDatabaseAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. After the successful execution of the cmdlet, auditing of the database is enabled. These settings override the server default auditing policy. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlDatabaseAuditingPolicy - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - EventType - - Specifies the event types to audit. Valid values are: DataAccess, DataChanges, SchemaChanges, SecurityExcceptions, RevokePermissions, All, None. - It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. - - String[] - - - StorageAccountName - - Specifies the name of the storage account to be used when auditing the database. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. - - String - - - StorageKeyType - - Specifies which of the storage access keys to use (defaults to 'Primary'). Valid values are: Primary, Secondary. - - String - - - RetentionInDays - - - - Nullable`1[UInt32] - - - TableIdentifier - - - - String - - - ServerName - - The name of the server that contains the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group that contains the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - EventType - - Specifies the event types to audit. Valid values are: DataAccess, DataChanges, SchemaChanges, SecurityExcceptions, RevokePermissions, All, None. - It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. - - String[] - - String[] - - - none - - - StorageAccountName - - Specifies the name of the storage account to be used when auditing the database. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. - - String - - String - - - none - - - StorageKeyType - - Specifies which of the storage access keys to use (defaults to 'Primary'). Valid values are: Primary, Secondary. - - String - - String - - - none - - - RetentionInDays - - - - Nullable`1[UInt32] - - Nullable`1[UInt32] - - - - - - TableIdentifier - - - - String - - String - - - - - - ServerName - - The name of the server that contains the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group that contains the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Set-AzureSqlDatabaseAuditingPolicy -Full - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Set-AzureSqlDatabaseDataMaskingPolicy - - Sets an Azure SQL Database's data masking policy. - - - - - Set - AzureSqlDatabaseDataMaskingPolicy - - - - The Set-AzureSqlDatabaseDataMaskingPolicy cmdlet changes the auditing policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, the DataMaskingState parameter to specify whether data masking operations are enabled or disabled, the MaskingLevel parameter to define whether masking is done in standard or extended mode and the PrivilegedLogins parameter to specify which users are allowed to see the unmasked data. If the command succeeds and the PassThru switch is on, it returns an object describing the current data masking policy used as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlDatabaseDataMaskingPolicy - - PassThru - - Returns an object describing the data masking policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - PrivilegedLogins - - - - String - - - DataMaskingState - - Specifies whether data masking operation is enabled or disabled (defaults to 'Disabled'). Valid values are: Enabled, Disabled. - - String - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - PassThru - - Returns an object describing the data masking policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - PrivilegedLogins - - - - String - - String - - - none - - - DataMaskingState - - Specifies whether data masking operation is enabled or disabled (defaults to 'Disabled'). Valid values are: Enabled, Disabled. - - String - - String - - - none - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - MaskingLevel - - Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended. - - string - - string - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Set-AzureSqlDatabaseDataMaskingPolicy -Full - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Set-AzureSqlDatabaseDataMaskingRule - - Sets an Azure SQL Database's data masking rule. - - - - - Set - AzureSqlDatabaseDataMaskingRule - - - - The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify the target of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlDatabaseDataMaskingRule - - ColumnName - - The name of the column that is the target of this masking rule. - - String - - - TableName - - The name of the table in the database that the masked column is part of. - - String - - - SchemaName - - - - String - - - MaskingFunction - - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. - - String - - - PrefixSize - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - ReplacementString - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - String - - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - NumberFrom - - When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. - - Nullable`1[Double] - - - NumberTo - - When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. - - Nullable`1[Double] - - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - RuleId - - The identifier for the data masking rule. - - String - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - ColumnName - - The name of the column that is the target of this masking rule. - - String - - String - - - none - - - TableName - - The name of the table in the database that the masked column is part of. - - String - - String - - - none - - - SchemaName - - - - String - - String - - - - - - MaskingFunction - - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. - - String - - String - - - none - - - PrefixSize - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - Nullable`1[UInt32] - - - none - - - ReplacementString - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - String - - String - - - none - - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - Nullable`1[UInt32] - - - none - - - NumberFrom - - When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. - - Nullable`1[Double] - - Nullable`1[Double] - - - none - - - NumberTo - - When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. - - Nullable`1[Double] - - Nullable`1[Double] - - - none - - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - RuleId - - The identifier for the data masking rule. - - String - - String - - - none - - - ServerName - - The name of the server containing the database. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - AliasName - - The name of the alias that is the target of this masking rule. - - string - - string - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Set-AzureSqlDatabaseDataMaskingRule -Full - - Code Example Description - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Set-AzureSqlDatabaseTransparentDataEncryption - - Updates properties for Transparent Data Encryption for an Azure SQL Database. - - - - - Set - AzureSqlDatabaseTransparentDataEncryption - - - - The Set-SetAzureSqlDatabaseTransparentDataEncryption cmdlet is used to set the Transparent Data Encryption (TDE) property of an already existing Azure SQL database. Use the ResourceGroupName, ServerName, and DatabaseName. Use "Enabled" or "Disabled" to specify the target state of TDE for an Azure SQL Database. If the command succeeds and the PassThru switch is on, it returns an object describing the TDE state as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName). - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlDatabaseTransparentDataEncryption - - State - - The state to set Transparent Data Encryption to for the Azure SQL Database. - - TransparentDataEncryptionStateType - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - State - - The state to set Transparent Data Encryption to for the Azure SQL Database. - - TransparentDataEncryptionStateType - - TransparentDataEncryptionStateType - - - - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - String - - - - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - String - - - - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled - - The following command updates the transparent data encryption state for the Azure SQL database named "database1". - - - PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled + ResourceGroupName : resourcegroup1 + ServerName : server1 + DatabaseName : database1 + Status : Encrypting + PercentComplete : 3.662109 + + + + + + + + + + + + + + Transparent Data Encryption with Azure SQL Database + https://msdn.microsoft.com/library/dn948096 + + + + + + + Get-AzureSqlElasticPool + + Gets the details for an Azure SQL elastic database pool. + + + + + Get + AzureSqlElasticPool + + + + Gets all elastic pools and their property values, or pass the name of an existing elastic pool and return only the property values for that pool. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlElasticPool + + ElasticPoolName + + The name of the Azure SQL elastic pool to retrieve. + + String + + + ServerName + + The name of the Azure SQL Server containing the elastic pool. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the elastic pool. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + ElasticPoolName + + The name of the Azure SQL elastic pool to retrieve. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Server containing the elastic pool. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group of the server containing the elastic pool. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" + + This example returns all elastic pools on "server1". + + + + + + + + + + + + + + -------------------------- Example 2 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" + + This example returns the elastic pool named "elasticpool1" on "server1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + New-AzureSqlElasticPool + + + + Remove-AzureSqlElasticPool + + + + Set-AzureSqlElasticPool + + + + + + + + Get-AzureSqlElasticPoolActivity + + Gets the status of elastic database pool operations. + + + + + Get + AzureSqlElasticPoolActivity + + + + Provides the status of elastic pool operations including pool creation and configuration updates. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlElasticPoolActivity + + ServerName + + The name of the Azure SQL Server that the elastic pool is in. + + String + + + ElasticPoolName + + The name of the Azure SQL elastic pool. + + String + + + ResourceGroupName + + The name of the resource group containing the elastic pool. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServerName + + The name of the Azure SQL Server that the elastic pool is in. + + String + + String + + + none + + + ElasticPoolName + + The name of the Azure SQL elastic pool. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the elastic pool. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlElasticPoolActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" + + The following example returns the operation status for the elastic pool named "elasticpool1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlElasticPool + + + + Get-AzureSqlElasticPoolDatabase + + + + Get-AzureSqlDatabaseActivity + + + + New-AzureSqlElasticPool + + + + Remove-AzureSqlElasticPool + + + + Set-AzureSqlElasticPool + + + + + + + + Get-AzureSqlElasticPoolDatabase + + Returns one or all elastic databases in an elastic database pool. + + + + + Get + AzureSqlElasticPoolDatabase + + + + Returns all elastic databases in an elastic pool and their property values, or provide the name of an elastic database and return only the property values for that database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlElasticPoolDatabase + + ElasticPoolName + + The name of the Azure SQL elastic pool to retrieve. + + String + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + + ServerName + + The name of the Azure SQL Server that the elastic pool is in. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the elastic pool. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ElasticPoolName + + The name of the Azure SQL elastic pool to retrieve. + + String + + String + + + none + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Server that the elastic pool is in. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group of the server containing the elastic pool. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlElasticPoolDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" + + This example returns all databases in an elastic pool named "elasticpool1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlElasticPool + + + + Get-AzureSqlElasticPoolActivity + + + + Get-AzureSqlDatabaseActivity + + + + New-AzureSqlElasticPool + + + + Remove-AzureSqlElasticPool + + + + Set-AzureSqlElasticPool + + + + + + + + Get-AzureSqlElasticPoolRecommendation + + + + + + + Get + AzureSqlElasticPoolRecommendation + + + + + + + + Get-AzureSqlElasticPoolRecommendation + + ElasticPoolRecommendation + + + + String + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ElasticPoolRecommendation + + + + String + + String + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureSqlElasticPoolRecommendationDatabase + + + + + + + Get + AzureSqlElasticPoolRecommendationDatabase + + + + + + + + Get-AzureSqlElasticPoolRecommendationDatabase + + ElasticPoolRecommendation + + + + String + + + DatabaseName + + + + String + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ElasticPoolRecommendation + + + + String + + String + + + + + + DatabaseName + + + + String + + String + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureSqlElasticPoolRecommendationMetrics + + + + + + + Get + AzureSqlElasticPoolRecommendationMetrics + + + + + + + + Get-AzureSqlElasticPoolRecommendationMetrics + + ElasticPoolRecommendation + + + + String + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ElasticPoolRecommendation + + + + String + + String + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureSqlServer + + Returns information about one or more Azure SQL Database Servers. + + + + + Get + AzureSqlServer + + + + If a SQL Database Server name is specified in the ServerName parameter, the cmdlet returns information about the specific SQL Database Server. Otherwise, it returns information about all the SQL Database Servers. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlServer + + ServerName + + The name of the Azure SQL Server to retrieve. + + String + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServerName + + The name of the Azure SQL Server to retrieve. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1" + + Use this cmdlet to retrieve an Azure SQL Database Server named "server1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Get-AzureSqlServerFirewallRule + + Returns firewall rules for an Azure SQL Server. + + + + + Get + AzureSqlServerFirewallRule + + + + If a firewall rule name is specified in the FirewallRuleName parameter, the cmdlet returns information about the specific firewall rule. Otherwise, information about all the firewall rules in the specified Azure SQL Server are listed. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlServerFirewallRule + + FirewallRuleName + + The name of the firewall rule to retrieve. If not specified, information about all the firewall rules in the specified Azure SQL Server is listed. + + String + + + ServerName + + The name of the Azure SQL Server for which you want to retrieve the firewall rules. Specify only the server name, and not the fully qualified DNS name. + + String + + + ResourceGroupName + + The name of the resource group of the Azure SQL Server containing the firewall rules to retrieve. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + FirewallRuleName + + The name of the firewall rule to retrieve. If not specified, information about all the firewall rules in the specified Azure SQL Server is listed. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Server for which you want to retrieve the firewall rules. Specify only the server name, and not the fully qualified DNS name. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group of the Azure SQL Server containing the firewall rules to retrieve. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlServerFirewallRule –ResourceGroupName "resourcegroup1" –ServerName "server1" + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Get-AzureSqlServerServiceObjective + + Returns a list of service objectives for an Azure SQL Server. + + + + + Get + AzureSqlServerServiceObjective + + + + Returns available service objectives for an Azure SQL Server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlServerServiceObjective + + ServiceObjectiveName + + The Azure SQL Database service objective name. + + String + + + ServerName + + The name of the Azure SQL Server. + + String + + + DatabaseName + + The name of the Azure SQL Database. + + String + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServiceObjectiveName + + The Azure SQL Database service objective name. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Server. + + String + + String + + + none + + + DatabaseName + + The name of the Azure SQL Database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlServerServiceObjective –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + The following example returns the service objective. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Get-AzureSqlServerUpgrade + + + + + + + Get + AzureSqlServerUpgrade + + + + + + + + Get-AzureSqlServerUpgrade + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + New-AzureSqlDatabase + + Creates a new Azure SQL Database, or new elastic database. + + + + + New + AzureSqlDatabase + + + + + The New-AzureSqlDatabase cmdlet creates a new Azure SQL Database. + Create an elastic database by setting the ElasticPoolName to an existing elastic pool. + + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlDatabase + + DatabaseName + + The name of the Azure SQL Database to create. + + String + + + CollationName + + The name of the Azure SQL Database collation to use. + + String + + + CatalogCollation + + The name of the Azure SQL Database catalog collation to use. + + String + + + MaxSizeBytes + + The maximum size of the Azure SQL Database in bytes. + + Int64 + + + Edition + + The edition to assign to the Azure SQL Database. + + DatabaseEdition + + + RequestedServiceObjectiveName + + The name of the service objective to assign to the Azure SQL Database. + + String + + + ElasticPoolName + + The name of the elastic pool to put the database in. + + String + + + Tags + + The tags to associate to the Azure SQL Database Server. + + Dictionary`2[String] + + + ServerName + + Name of the Azure SQL Server to create the database in. + + String + + + ResourceGroupName + + Name of resource group that the Azure SQL Server is in. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to create. + + String + + String + + + none + + + CollationName + + The name of the Azure SQL Database collation to use. + + String + + String + + + none + + + CatalogCollation + + The name of the Azure SQL Database catalog collation to use. + + String + + String + + + none + + + MaxSizeBytes + + The maximum size of the Azure SQL Database in bytes. + + Int64 + + Int64 + + + none + + + Edition + + The edition to assign to the Azure SQL Database. + + DatabaseEdition + + DatabaseEdition + + + none + + + RequestedServiceObjectiveName + + The name of the service objective to assign to the Azure SQL Database. + + String + + String + + + none + + + ElasticPoolName + + The name of the elastic pool to put the database in. + + String + + String + + + none + + + Tags + + The tags to associate to the Azure SQL Database Server. + + Dictionary`2[String] + + Dictionary`2[String] + + + none + + + ServerName + + Name of the Azure SQL Server to create the database in. + + String + + String + + + none + + + ResourceGroupName + + Name of resource group that the Azure SQL Server is in. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1 -------------------------- + + PS C:\> + + PS C:\>New-AzureSqlDatabase –ResourceGroupName "resourceGroup1" –ServerName "server1" –DatabaseName "db1" + + The following command creates a database named "db1" in server "Server1". + + + + + + + + + + + + + + -------------------------- Example 2 -------------------------- + + PS C:\> + + PS C:\>New-AzureSqlDatabase -ResourceGroupName "resourcegroup1" -ServerName "server1" -DatabaseName "database1" -ElasticPoolName "elasticpool1" + + The following command creates a database named "database1" in the elastic pool named "elasticpool1" in server "server1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + New-AzureSqlServer + + + + New-AzureSqlElasticPool + + + + + + + + New-AzureSqlDatabaseDataMaskingRule + + Creates a new Azure SQL Database's data masking rule. + + + + + New + AzureSqlDatabaseDataMaskingRule + + + + The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify thetarget of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlDatabaseDataMaskingRule + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + + TableName + + The name of the table in the database to apply the rule. + + String + + + ColumnName + + The name of the column that is the target of this masking rule. + + String + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + NumberFrom + + When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. + + Nullable`1[Double] + + + NumberTo + + When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. + + Nullable`1[Double] + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + RuleId + + The identifier for this data masking rule. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + New-AzureSqlDatabaseDataMaskingRule + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + + AliasName + + The name of the alias that is the target of this masking rule. + + String + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + NumberFrom + + When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. + + Nullable`1[Double] + + + NumberTo + + When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. + + Nullable`1[Double] + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + RuleId + + The identifier for this data masking rule. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + String + + + none + + + TableName + + The name of the table in the database to apply the rule. + + String + + String + + + none + + + ColumnName + + The name of the column that is the target of this masking rule. + + String + + String + + + none + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + none + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + String + + + none + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + none + + + NumberFrom + + When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. + + Nullable`1[Double] + + Nullable`1[Double] + + + none + + + NumberTo + + When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. + + Nullable`1[Double] + + Nullable`1[Double] + + + none + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + RuleId + + The identifier for this data masking rule. + + String + + String + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + AliasName + + The name of the alias that is the target of this masking rule. + + String + + String + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help New-AzureSqlDatabaseDataMaskingRule + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + New-AzureSqlElasticPool + + Creates a new Azure SQL Database elastic database pool. + + + + + New + AzureSqlElasticPool + + + + This cmdlet creates a new elastic database pool. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlElasticPool + + ElasticPoolName + + The name of the Azure SQL elastic pool to create. + + String + + + Edition + + + The edition to assign to the Azure SQL elastic pool. + For the current preview, the edition must be "Standard". + + + DatabaseEdition + + + Dtu + + The total shared DTU for the Azure SQL elastic pool. + + Int32 + + + StorageMB + + The storage limit for the Azure SQL elastic pool in MB. + + Int64 + + + DatabaseDtuMin + + The minimum DTU that all Azure SQL Databases in the pool are guaranteed to have available. + + Int32 + + + DatabaseDtuMax + + The maximum DTU that any one Azure SQL Database in the pool can consume. + + Int32 + + + Tags + + The tags to associate with the Azure SQL elastic pool. + + Dictionary`2[String] + + + ServerName + + Name of the Azure SQL Server to create the elastic pool in. + + String + + + ResourceGroupName + + Name of resource group containing the Azure SQL Server to create the elastic pool in. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ElasticPoolName + + The name of the Azure SQL elastic pool to create. + + String + + String + + + none + + + Edition + + + The edition to assign to the Azure SQL elastic pool. + For the current preview, the edition must be "Standard". + + + DatabaseEdition + + DatabaseEdition + + + none + + + Dtu + + The total shared DTU for the Azure SQL elastic pool. + + Int32 + + Int32 + + + none + + + StorageMB + + The storage limit for the Azure SQL elastic pool in MB. + + Int64 + + Int64 + + + none + + + DatabaseDtuMin + + The minimum DTU that all Azure SQL Databases in the pool are guaranteed to have available. + + Int32 + + Int32 + + + none + + + DatabaseDtuMax + + The maximum DTU that any one Azure SQL Database in the pool can consume. + + Int32 + + Int32 + + + none + + + Tags + + The tags to associate with the Azure SQL elastic pool. + + Dictionary`2[String] + + Dictionary`2[String] + + + none + + + ServerName + + Name of the Azure SQL Server to create the elastic pool in. + + String + + String + + + none + + + ResourceGroupName + + Name of resource group containing the Azure SQL Server to create the elastic pool in. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>New-AzureSqlElasticPool -ResourceGroupName "resourcegroup1" -ServerName "server1" -ElasticPoolName "elasticpool1" -Edition "Standard" -Dtu 400 -DatabaseDtuMin 10 -DatabaseDtuMax 100 + + The following command creates an elastic pool in the Standard service tier named "elasticpool1" in the server named "server1" within an Azure resource group named "resourcegroup1", and specifies DTU property values for the pool and it’s databases. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlElasticPool + + + + Get-AzureSqlElasticPoolActivity + + + + Get-AzureSqlElasticPoolDatabase + + + + Get-AzureSqlDatabaseActivity + + + + Remove-AzureSqlElasticPool + + + + Set-AzureSqlElasticPool + + + + + + + + New-AzureSqlServer + + Creates a new Azure SQL Database server. + + + + + New + AzureSqlServer + + + + The New-AzureSqlDatabaseServer cmdlet creates a new Azure SQL server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlServer + + ServerName + + The name of the new Azure SQL Server to create. + + String + + + SqlAdminCredentials + + The SQL administrator credentials for the new server. + + PSCredential + + + Location + + The data center location where the Azure SQL Server will be created. + + String + + + Tags + + The tags to associate with the Azure SQL Server. + + Dictionary`2[String] + + + ServerVersion + + The version of the new Azure SQL Server. Valid values are 2.0, or 12.0. + Use 2.0 to create a V11 server, or 12.0 to create a V11 server. + + String + + + ResourceGroupName + + The name of the resource group to create the Azure SQL Server in. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServerName + + The name of the new Azure SQL Server to create. + + String + + String + + + none + + + SqlAdminCredentials + + The SQL administrator credentials for the new server. + + PSCredential + + PSCredential + + + none + + + Location + + The data center location where the Azure SQL Server will be created. + + String + + String + + + none + + + Tags + + The tags to associate with the Azure SQL Server. + + Dictionary`2[String] + + Dictionary`2[String] + + + none + + + ServerVersion + + The version of the new Azure SQL Server. Valid values are 2.0, or 12.0. + Use 2.0 to create a V11 server, or 12.0 to create a V11 server. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group to create the Azure SQL Server in. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>New-AzureSqlServer -ResourceGroupName "resourcegroup1" -ServerName "server1" -Location "West US" -ServerVersion "12.0" + + This command creates a new Azure SQL V12 Server. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlServer + + + + Remove-AzureSqlServer + + + + Set-AzureSqlServer + + + + New-AzureSqlServerFirewallRule + + + + + + + + New-AzureSqlServerFirewallRule + + + + + + + New + AzureSqlServerFirewallRule + + + + + + + + New-AzureSqlServerFirewallRule + + FirewallRuleName + + + + String + + + StartIpAddress + + + + String + + + EndIpAddress + + + + String + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + New-AzureSqlServerFirewallRule + + AllowAllAzureIPs + + + + SwitchParameter + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + FirewallRuleName + + + + String + + String + + + + + + StartIpAddress + + + + String + + String + + + + + + EndIpAddress + + + + String + + String + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + AllowAllAzureIPs + + + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Remove-AzureSqlDatabase + + Deletes an Azure SQL Database. + + + + + Remove + AzureSqlDatabase + + + + The Remove-AzureSqlDatabase cmdlet deletes an Azure SQL Database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlDatabase + + DatabaseName + + The name of the Azure SQL Database to remove. + + String + + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + + ServerName + + The name of the Azure SQL Server the database is in. + + String + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server that contains the Azure SQL Database to remove. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + DatabaseName + + The name of the Azure SQL Database to remove. + + String + + String + + + none + + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the Azure SQL Server the database is in. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server that contains the Azure SQL Database to remove. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Remove-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + The following code example deletes an Azure SQL Database. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Remove-AzureSqlDatabaseAuditing + + Disables an Azure Sql database's auditing. + + + + + Remove + AzureSqlDatabaseAuditing + + + + The Remove-AzureSqlDatabaseAuditing cmdlet disables the auditing of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlDatabaseAuditing + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Remove-AzureSqlDatabaseAuditing + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Remove-AzureSqlDatabaseDataMaskingRule + + Removes an Azure SQL Database's data masking rule. + + + + + Remove + AzureSqlDatabaseDataMaskingRule + + + + The Remove-AzureSqlDatabaseDataMaskingRule cmdlet removes a specific data masking rule. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and RuleId parameters to identify the rule to be removed. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlDatabaseDataMaskingRule + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + Force + + Allows the action to complete without prompting you for confirmation. + + SwitchParameter + + + RuleId + + The identifier for the data masking rule. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + Thhhe name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + Force + + Allows the action to complete without prompting you for confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + RuleId + + The identifier for the data masking rule. + + String + + String + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + Thhhe name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.Cmdlet Remark + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Remove-AzureSqlDatabaseDataMaskingRule + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Remove-AzureSqlServerAuditing + + Disables auditing of all the databases that rely on the auditing policy of the given database server. + + + + + Remove + AzureSqlDatabaseServerAuditing + + + + The Remove-AzureSqlServerAuditing cmdlet disables auditing of all the databases that rely on the auditing policy of the given database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server. After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database server identifiers (i.e. ResourceGroupName and ServerName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlServerAuditing + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + The name of the server. + + String + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the server. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Remove-AzureSqlServerAuditing -Full + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Remove-AzureSqlElasticPool + + Deletes an Azure SQL elastic database pool. + + + + + Remove + AzureSqlElasticPool + + + + The Remove-AzureSqlElasticPool cmdlet deletes an elastic pool. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlElasticPool + + ElasticPoolName + + The name of the elastic pool to delete. + + String + + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + + ServerName + + Name of the Azure SQL Server containing the elastic pool to remove. + + String + + + ResourceGroupName + + Name of resource group of the Azure SQL Server containing the elastic pool to remove. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + ElasticPoolName + + The name of the elastic pool to delete. + + String + + String + + + none + + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + Name of the Azure SQL Server containing the elastic pool to remove. + + String + + String + + + none + + + ResourceGroupName + + Name of resource group of the Azure SQL Server containing the elastic pool to remove. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>Remove-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" + + The following command deletes an elastic pool named "elasticpool1": + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlElasticPool + + + + Get-AzureSqlElasticPoolActivity + + + + Get-AzureSqlElasticPoolDatabase + + + + Get-AzureSqlDatabaseActivity + + + + New-AzureSqlElasticPool + + + + Set-AzureSqlElasticPool + + + + + + + + Remove-AzureSqlServer + + Removes an Azure SQL Server. + + + + + Remove + AzureSqlServer + + + + The Remove-AzureSqlServer cmdlet removes an Azure SQL Server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlServer + + ServerName + + The name of the Azure SQL Server to remove. + + String + + + Force + + Skip confirmation message and remove the Azure SQL Server. + + SwitchParameter + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server to remove. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + ServerName + + The name of the Azure SQL Server to remove. + + String + + String + + + none + + + Force + + Skip confirmation message and remove the Azure SQL Server. + + SwitchParameter + + SwitchParameter + + + none + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server to remove. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Remove-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1" + + The following example removes "server1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Remove-AzureSqlServerActiveDirectoryAdministrator + + Removes an Azure Active Directory administrator for Azure SQL Server in the current subscription. + + + + + Remove + AzureSqlServerActiveDirectoryAdministrator + + + + The Remove-AzureSqlServerActiveDirectoryAdministrator cmdlet removes an Azure Active Directory administrator for Azure SQL Server in the current subscription. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlServerActiveDirectoryAdministrator + + Force + + Skip confirmation message and remove the Azure SQL Server. + + SwitchParameter + + + ServerName + + The name of the Azure SQL Server to remove. + + String + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server to remove. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + Force + + Skip confirmation message and remove the Azure SQL Server. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the Azure SQL Server to remove. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server to remove. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + + System.String + + + + + + + + OutputType + + + + + + System.Object + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS c:\> Remove-AzureSqlServerActiveDirectoryAdministrator -ResourceGroupName "Group-23" –ServerName "aad-managed-demo" + + This command removes an Azure Active Directory administrator for Azure SQL Database Server "aad_managed_demo" associated with resource group "Group-23" + + + + Confirm + Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server 'aadtest'? + [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y -ResourceGroupName ServerName DatabaseName State ------------------ ---------- ------------ ----- -resourcegroup1 server1 database1 Disabled - - - - - - - - - - - - - Transparent Data Encryption with Azure SQL Database - https://msdn.microsoft.com/library/dn948096 - - - - - - - Set-AzureSqlElasticPool - - Updates properties for an Azure SQL elastic database pool. - - - - - Set - AzureSqlElasticPool - - - - The only properties of an existing pool that can be changed are its Pool DTUs, DTU min per database, and DTU max per database. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlElasticPool - - ElasticPoolName - - The name of the Azure SQL elastic pool. - - String - - - Edition - - The edition cannot be changed. - - DatabaseEdition - - - Dtu - - The total shared DTU for the Azure SQL elastic pool. - - Int32 - - - StorageMB - - The storage limit for the Azure SQL elastic pool in MB. - - Int64 - - - DatabaseDtuMin - - The minimum DTU all Azure SQL Databases in the pool are guaranteed. - - Int32 - - - DatabaseDtuMax - - The maximum DTU any one Azure SQL Database in the pool can consume. - - Int32 - - - Tags - - The tags to associate with the Azure SQL elastic pool. - - Dictionary`2[String] - - - ServerName - - The name of the Azure SQL Server containing the elastic pool. - - String - - - ResourceGroupName - - Name of resource group of the Azure SQL Server containing the elastic pool to update. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ElasticPoolName - - The name of the Azure SQL elastic pool. - - String - - String - - - none - - - Edition - - The edition cannot be changed. - - DatabaseEdition - - DatabaseEdition - - - none - - - Dtu - - The total shared DTU for the Azure SQL elastic pool. - - Int32 - - Int32 - - - none - - - StorageMB - - The storage limit for the Azure SQL elastic pool in MB. - - Int64 - - Int64 - - - none - - - DatabaseDtuMin - - The minimum DTU all Azure SQL Databases in the pool are guaranteed. - - Int32 - - Int32 - - - none - - - DatabaseDtuMax - - The maximum DTU any one Azure SQL Database in the pool can consume. - - Int32 - - Int32 - - - none - - - Tags - - The tags to associate with the Azure SQL elastic pool. - - Dictionary`2[String] - - Dictionary`2[String] - - - none - - - ServerName - - The name of the Azure SQL Server containing the elastic pool. - - String - - String - - - none - - - ResourceGroupName - - Name of resource group of the Azure SQL Server containing the elastic pool to update. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlDatabaseElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" –Dtu 1000 –DatabaseDtuMax 100 –DatabaseDtuMin 20 - - The following command sets an elastic pool’s DTUs to 1000, DTU max per database to 100, and the DTU min per database to 20. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlElasticPool - - - - Get-AzureSqlElasticPoolActivity - - - - Get-AzureSqlElasticPoolDatabase - - - - Get-AzureSqlDatabaseActivity - - - - New-AzureSqlElasticPool - - - - Set-AzureSqlElasticPool - - - - - - - - Set-AzureSqlServer - - Update the properties for an Azure SQL Server. - - - - - Set - AzureSqlServer - - - - The Set-AzureSqlServer cmdlet updates the properties of an Azure SQL Server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlServer - - ServerName - - The name of the Azure SQL Server. - - String - - - SqlAdministratorPassword - - - - SecureString - - - Tags - - The tags to associate with the Azure SQL Server. - - Dictionary`2[String] - - - ServerVersion - - The Azure SQL Server version to change to. - - String - - - Force - - Skip the confirmation message and update the Azure SQL Server. - - SwitchParameter - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - ServerName - - The name of the Azure SQL Server. - - String - - String - - - none - - - SqlAdministratorPassword - - - - SecureString - - SecureString - - - - - - Tags - - The tags to associate with the Azure SQL Server. - - Dictionary`2[String] - - Dictionary`2[String] - - - none - - - ServerVersion - - The Azure SQL Server version to change to. - - String - - String - - - none - - - Force - - Skip the confirmation message and update the Azure SQL Server. - - SwitchParameter - - SwitchParameter - - - none - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - SqlAdminPassword - - The new SQL administrator password for the server. - - securestring - - securestring - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Set-AzureSqlServer - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Set-AzureSqlServerActiveDirectoryAdministrator - - Provisions an Azure Active Directory administrator for Azure SQL Server in the current subscription. - - - - - Set - AzureSqlServerActiveDirectoryAdministrator - - - - The Set-AzureSqlServerActiveDirectoryAdministrator cmdlet provisions an Azure Active Directory administrator for Azure SQL Server in the current subscription. - At any given time only one administrator can be provisioned - The following members of Azure Active Directory can be provisioned as an administrator for Azure SQL Server - Native members of Azure Active Directory - Federated members of Azure Active Directory - Imported members from other Azure Active Directories who are native or federated members - Active directory groups created as security groups - - Microsoft accounts (i.e. outllok.com, hotmail.com, live.com) or other guest accounts (i.e. gmail.com, yahoo.com) are not supported as administrators - For manageability purpose it is recommended to provision a dedicated Azure Active Directory group as an administrator - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlServerActiveDirectoryAdministrator - - DisplayName - - Diplay name of the Azure AD administrator (user or group) to be provisioned for SQL Server. - - String - - - ObjectId - - The unique object ID of the Azure AD administrator to be provisioned for SQL Server. Required if Azure AD <DisplayName> parameter is not unique. - - - Guid - - - ServerName - - The name of the Azure SQL Server that contains the Azure Active Directory administrator you want to change. - - String - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server with the Azure Active Directory administrator to change. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - DisplayName - - Diplay name of the Azure AD administrator (user or group) to be provisioned for SQL Server. - - String - - String - - - - - - ObjectId - - The unique object ID of the Azure AD administrator to be provisioned for SQL Server. Required if Azure AD <DisplayName> parameter is not unique. - - - Guid - - Guid - - - - - - ServerName - - The name of the Azure SQL Server that contains the Azure Active Directory administrator you want to change. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server with the Azure Active Directory administrator to change. - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - - - - - - - Set-AzureSqlServerAuditingPolicy - - Sets an Azure SQL Database server's auditing policy. - - - - - Set - AzureSqlServerAuditingPolicy - - - - The Set-AzureSqlServerAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. The auditing policy of a database server apply to all the databases in this server that are marked as using the server's auditing policy, as well as all newly created databases.If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the server's identifiers (i.e. ResourceGroupName and ServerName). - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlServerAuditingPolicy - - PassThru - - Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - EventType - - Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. - It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. - - String[] - - - StorageAccountName - - Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. - - String - - - StorageKeyType - - The type of storage key. Valid values are: Primary, Secondary. - - String - - - RetentionInDays - - - - Nullable`1[UInt32] - - - TableIdentifier - - - - String - - - ServerName - - The name of the server. - - String - - - ResourceGroupName - - The name of the resource group that contains the server. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - EventType - - Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. - It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. - - String[] - - String[] - - - none - - - StorageAccountName - - Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. - - String - - String - - - none - - - StorageKeyType - - The type of storage key. Valid values are: Primary, Secondary. - - String - - String - - - none - - - RetentionInDays - - - - Nullable`1[UInt32] - - Nullable`1[UInt32] - - - - - - TableIdentifier - - - - String - - String - - - - - - ServerName - - The name of the server. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group that contains the server. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" - - This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23" - - - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b - - - - - - - - - - - -------------------------- Code Example 2 -------------------------- - - PS C:\> - - PS C:\>Get-Help Set-AzureSqlServerAuditingPolicy - - Code Example Description - - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo Bob Johns 11E95548-B179-4FE1-9AF4-ACA49D13ABB9 - - - - - - - - - - - -------------------------- Code Example 3 -------------------------- - - PS C:\> - - PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" - - This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23". To enforce <DisplayName> uniqueness, an optional parameter <–ObjectId > "40b79501-b343-44ed-9ce7-da4c8cc7353b" representing Azure AD ObjectID for the DBAs group is included - - - PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" + ResourceGroupName ServerName DisplayName ObjectId + ----------------- ---------- ----------- -------- + Group-233 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + + + + + + + + + + + + Get-AzureSqlServerActiveDirectoryAdministrator + + + + Set-AzureSqlServerActiveDirectoryAdministrator + + + + + + + + Remove-AzureSqlServerFirewallRule + + Deletes a firewall rule from an Azure SQL Database Server. + + + + + Remove + AzureSqlServerFirewallRule + + + + The Remove-AzureSqlDatabaseServerFirewallRule cmdlet deletes a firewall rule from the specified SQL Database Server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlServerFirewallRule + + FirewallRuleName + + The SQL Database firewall rule name to be deleted. + + String + + + Force + + Allows the action to complete without prompting you for confirmation. + + SwitchParameter + + + ServerName + + The name of the server containing the firewall rule you want to delete. + + String + + + ResourceGroupName + + The name of the ARM resource group of the server containing the firewall rule you want to delete. + + String + + + Profile + + + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + FirewallRuleName + + The SQL Database firewall rule name to be deleted. + + String + + String + + + none + + + Force + + Allows the action to complete without prompting you for confirmation. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the server containing the firewall rule you want to delete. + + String + + String + + + none + + + ResourceGroupName + + The name of the ARM resource group of the server containing the firewall rule you want to delete. + + String + + String + + + none + + + Profile + + + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + New InputType + + + + + + + OutputType + + + + + New OutputType + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Remove-AzureSqlServerFirewallRule –FirewallRuleName "rule1" –ResourceGroupName "resourcegroup1" –ServerName "server1" + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlServerFirewallRule + + + + New-AzureSqlServerFirewallRule + + + + Set-AzureSqlServerFirewallRule + + + + + + + + Set-AzureSqlDatabase + + Updates properties for an Azure SQL Database, or moves an existing database into an elastic pool. + + + + + Set + AzureSqlDatabase + + + + + The Set-AzureSqlDatabase cmdlet sets properties for an Azure SQL Database. + Set the ElasticPoolName parameter to move a database into an elastic pool. + + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabase + + DatabaseName + + The name of the Azure SQL Database to modify. + + String + + + MaxSizeBytes + + If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. + + Int64 + + + Edition + + If specified, the new edition for the Azure SQL Database. + + DatabaseEdition + + + RequestedServiceObjectiveName + + The name of the service objective to assign to the Azure SQL Database. + + String + + + ElasticPoolName + + The name of the Azure SQL elastic pool to put the database in. + + String + + + Tags + + The tags to associate with the Azure SQL Database. + + Dictionary`2[String] + + + ServerName + + Name of the Azure SQL Server that contains the Azure SQL Database. + + String + + + ResourceGroupName + + Name of resource group of the Azure SQL Server that contains the Azure SQL Database. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to modify. + + String + + String + + + none + + + MaxSizeBytes + + If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. + + Int64 + + Int64 + + + none + + + Edition + + If specified, the new edition for the Azure SQL Database. + + DatabaseEdition + + DatabaseEdition + + + none + + + RequestedServiceObjectiveName + + The name of the service objective to assign to the Azure SQL Database. + + String + + String + + + none + + + ElasticPoolName + + The name of the Azure SQL elastic pool to put the database in. + + String + + String + + + none + + + Tags + + The tags to associate with the Azure SQL Database. + + Dictionary`2[String] + + Dictionary`2[String] + + + none + + + ServerName + + Name of the Azure SQL Server that contains the Azure SQL Database. + + String + + String + + + none + + + ResourceGroupName + + Name of resource group of the Azure SQL Server that contains the Azure SQL Database. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example1 -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –DatabaseName "database1" –ServerName "server1" –Edition "Standard" –RequestedServiceObjectiveName "S2" + + The following command updates a database named "database1" to a Standard S2 database. + + + + + + + + + + + + + + -------------------------- Example2 -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –DatabaseName "database1" –ServerName "server1" –ElasticPoolName "elasticpool1" + + The following command adds a database named "database1" to the elastic pool named "elasticpool1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlDatabaseAuditingPolicy + + Sets an Azure SQL Database's auditing policy. + + + + + Set + AzureSqlDatabaseAuditingPolicy + + + + The Set-AzureSqlDatabaseAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. After the successful execution of the cmdlet, auditing of the database is enabled. These settings override the server default auditing policy. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabaseAuditingPolicy + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + EventType + + Specifies the event types to audit. Valid values are: DataAccess, DataChanges, SchemaChanges, SecurityExcceptions, RevokePermissions, All, None. + It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. + + String[] + + + StorageAccountName + + Specifies the name of the storage account to be used when auditing the database. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. + + String + + + StorageKeyType + + Specifies which of the storage access keys to use (defaults to 'Primary'). Valid values are: Primary, Secondary. + + String + + + RetentionInDays + + + + Nullable`1[UInt32] + + + TableIdentifier + + + + String + + + ServerName + + The name of the server that contains the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group that contains the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + EventType + + Specifies the event types to audit. Valid values are: DataAccess, DataChanges, SchemaChanges, SecurityExcceptions, RevokePermissions, All, None. + It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. + + String[] + + String[] + + + none + + + StorageAccountName + + Specifies the name of the storage account to be used when auditing the database. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. + + String + + String + + + none + + + StorageKeyType + + Specifies which of the storage access keys to use (defaults to 'Primary'). Valid values are: Primary, Secondary. + + String + + String + + + none + + + RetentionInDays + + + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + + + + TableIdentifier + + + + String + + String + + + + + + ServerName + + The name of the server that contains the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group that contains the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Set-AzureSqlDatabaseAuditingPolicy -Full + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlDatabaseDataMaskingPolicy + + Sets an Azure SQL Database's data masking policy. + + + + + Set + AzureSqlDatabaseDataMaskingPolicy + + + + The Set-AzureSqlDatabaseDataMaskingPolicy cmdlet changes the auditing policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, the DataMaskingState parameter to specify whether data masking operations are enabled or disabled, the MaskingLevel parameter to define whether masking is done in standard or extended mode and the PrivilegedLogins parameter to specify which users are allowed to see the unmasked data. If the command succeeds and the PassThru switch is on, it returns an object describing the current data masking policy used as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabaseDataMaskingPolicy + + PassThru + + Returns an object describing the data masking policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + PrivilegedLogins + + + + String + + + DataMaskingState + + Specifies whether data masking operation is enabled or disabled (defaults to 'Disabled'). Valid values are: Enabled, Disabled. + + String + + + MaskingLevel + + Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the data masking policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + PrivilegedLogins + + + + String + + String + + + none + + + DataMaskingState + + Specifies whether data masking operation is enabled or disabled (defaults to 'Disabled'). Valid values are: Enabled, Disabled. + + String + + String + + + none + + + MaskingLevel + + Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended. + + String + + String + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Set-AzureSqlDatabaseDataMaskingPolicy -Full + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlDatabaseDataMaskingRule + + Sets an Azure SQL Database's data masking rule. + + + + + Set + AzureSqlDatabaseDataMaskingRule + + + + The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify the target of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabaseDataMaskingRule + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + + TableName + + The name of the table in the database that the masked column is part of. + + String + + + ColumnName + + The name of the column that is the target of this masking rule. + + String + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + NumberFrom + + When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. + + Nullable`1[Double] + + + NumberTo + + When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. + + Nullable`1[Double] + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + RuleId + + The identifier for the data masking rule. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + Set-AzureSqlDatabaseDataMaskingRule + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + + AliasName + + The name of the alias that is the target of this masking rule. + + String + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + NumberFrom + + When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. + + Nullable`1[Double] + + + NumberTo + + When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. + + Nullable`1[Double] + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + RuleId + + The identifier for the data masking rule. + + String + + + ServerName + + The name of the server containing the database. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + String + + + none + + + TableName + + The name of the table in the database that the masked column is part of. + + String + + String + + + none + + + ColumnName + + The name of the column that is the target of this masking rule. + + String + + String + + + none + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + none + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + String + + + none + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + none + + + NumberFrom + + When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. + + Nullable`1[Double] + + Nullable`1[Double] + + + none + + + NumberTo + + When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. + + Nullable`1[Double] + + Nullable`1[Double] + + + none + + + PassThru + + Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + RuleId + + The identifier for the data masking rule. + + String + + String + + + none + + + ServerName + + The name of the server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the database. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + AliasName + + The name of the alias that is the target of this masking rule. + + String + + String + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Set-AzureSqlDatabaseDataMaskingRule -Full + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlServerAuditingPolicy + + Sets an Azure SQL Database server's auditing policy. + + + + + Set + AzureSqlServerAuditingPolicy + + + + The Set-AzureSqlServerAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. The auditing policy of a database server apply to all the databases in this server that are marked as using the server's auditing policy, as well as all newly created databases.If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the server's identifiers (i.e. ResourceGroupName and ServerName). + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlServerAuditingPolicy + + PassThru + + Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + EventType + + Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. + It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. + + String[] + + + StorageAccountName + + Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. + + String + + + StorageKeyType + + The type of storage key. Valid values are: Primary, Secondary. + + String + + + RetentionInDays + + + + Nullable`1[UInt32] + + + TableIdentifier + + + + String + + + ServerName + + The name of the server. + + String + + + ResourceGroupName + + The name of the resource group that contains the server. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + EventType + + Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. + It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. + + String[] + + String[] + + + none + + + StorageAccountName + + Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. + + String + + String + + + none + + + StorageKeyType + + The type of storage key. Valid values are: Primary, Secondary. + + String + + String + + + none + + + RetentionInDays + + + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + + + + TableIdentifier + + + + String + + String + + + + + + ServerName + + The name of the server. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group that contains the server. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Set-AzureSqlServerAuditingPolicy + + Code Example Description + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlDatabaseTransparentDataEncryption + + Updates properties for Transparent Data Encryption for an Azure SQL Database. + + + + + Set + AzureSqlDatabaseTransparentDataEncryption + + + + The Set-SetAzureSqlDatabaseTransparentDataEncryption cmdlet is used to set the Transparent Data Encryption (TDE) property of an already existing Azure SQL database. Use the ResourceGroupName, ServerName, and DatabaseName. Use "Enabled" or "Disabled" to specify the target state of TDE for an Azure SQL Database. If the command succeeds and the PassThru switch is on, it returns an object describing the TDE state as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName). + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabaseTransparentDataEncryption + + State + + The state to set Transparent Data Encryption to for the Azure SQL Database. + + TransparentDataEncryptionStateType + + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + State + + The state to set Transparent Data Encryption to for the Azure SQL Database. + + TransparentDataEncryptionStateType + + TransparentDataEncryptionStateType + + + + + + ServerName + + The name of the Azure SQL Database Server the database is in. + + String + + String + + + + + + DatabaseName + + The name of the Azure SQL Database to retrieve. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group of the server containing the database to retrieve. + + String + + String + + + + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + + System.String + + + + + + + + OutputType + + + + + + Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled + + The following command updates the transparent data encryption state for the Azure SQL database named "database1". + + + + PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Set-AzureSqlServerFirewallRule - - Updates an Azure SQL Server firewall rule. - - - - - Set - AzureSqlServerFirewallRule - - - - The Set-AzureSqlServerFirewallRule cmdlet updates an Azure SQL Server firewall rule. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlServerFirewallRule - - FirewallRuleName - - The name of the Azure SQL Server firewall rule to update. - - String - - - StartIpAddress - - The new starting IP address for the firewall rule. - - String - - - EndIpAddress - - The new ending IP address for this rule. - - String - - - ServerName - - The name of the Azure SQL Server that contains the firewall rule you want to change. - - String - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server with the firewall rule to change. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - FirewallRuleName - - The name of the Azure SQL Server firewall rule to update. - - String - - String - - - none - - - StartIpAddress - - The new starting IP address for the firewall rule. - - String - - String - - - none - - - EndIpAddress - - The new ending IP address for this rule. - - String - - String - - - none - - - ServerName - - The name of the Azure SQL Server that contains the firewall rule you want to change. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server with the firewall rule to change. - - String - - String - - - none - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -System.Object - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlServerFirewallRule - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlServerFirewallRule - - - - New-AzureSqlServerFirewallRule - - - - Remove-AzureSqlServerFirewallRule - - - - - - - - Start-AzureSqlDatabaseExecuteIndexRecommendation - - - - - - - Start - AzureSqlDatabaseExecuteIndexRecommendation - - - - - - - - Start-AzureSqlDatabaseExecuteIndexRecommendation - - ServerName - - - - String - - - DatabaseName - - - - String - - - IndexRecommendationName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - IndexRecommendationName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Start-AzureSqlServerUpgrade - - Starts upgrading an Azure SQL V11 server to a V12 server. - - - - - Start - AzureSqlServerUpgrade - - - - The Start-AzureSqlServerUpgrade cmdlet starts the upgrade of a SQL V11 server to V12. -Monitor the progress of an upgrade with the Get-AzureSqlServerUpgrade cmdlet. -You can stop the upgrade process with the Stop-AzureSqlServerUpgrade cmdlet. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode -Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Start-AzureSqlServerUpgrade - - ServerVersion - - The target version to upgrade the Azure SQL Server. Currently the version must be "12.0". - - String - - - ScheduleUpgradeAfterUtcDateTime - - The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone. - - Nullable`1[DateTime] - - - DatabaseCollection - - Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. - - RecommendedDatabaseProperties[] - - - ElasticPoolCollection - - Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. - - UpgradeRecommendedElasticPoolProperties[] - - - ServerName - - The name of the Azure SQL Server to upgrade. - - String - - - ResourceGroupName - - The name of resource group containing the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - - - - ServerVersion - - The target version to upgrade the Azure SQL Server. Currently the version must be "12.0". - - String - - String - - - - - - ScheduleUpgradeAfterUtcDateTime - - The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone. - - Nullable`1[DateTime] - - Nullable`1[DateTime] - - - - - - DatabaseCollection - - Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. - - RecommendedDatabaseProperties[] - - RecommendedDatabaseProperties[] - - - - - - ElasticPoolCollection - - Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. - - UpgradeRecommendedElasticPoolProperties[] - - UpgradeRecommendedElasticPoolProperties[] - - - - - - ServerName - - The name of the Azure SQL Server to upgrade. - - String - - String - - - - - - ResourceGroupName - - The name of resource group containing the Azure SQL Server. - - String - - String - - - - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - - - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1: Simple server upgrade -------------------------- - - PS C:\> - - Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 - - Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0 -The server "MySqlServer" must have version 2.0, otherwise the command will fail. - - - - - - - - - - - - - - -------------------------- Example 2: Upgrade server with schedule time and target database properties -------------------------- - - PS C:\> - - $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() -$databaseMap = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.RecommendedDatabaseProperties -$databaseMap.Name = "testdb" -$databaseMap.TargetEdition = "Standard" -$databaseMap.TargetServiceLevelObjective = "S0" -Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -DatabaseCollection @($databaseMap) - - Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. -The server "MySqlServer" must have version 2.0 and a database named "testdb", otherwise the command will fail. - - - - - - - - - - - - - - -------------------------- Example 3: Upgrade server with schedule time and target elastic pool properties -------------------------- - - PS C:\> - - $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() -$elasticPool = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.UpgradeRecommendedElasticPoolProperties -$elasticPool.DatabaseDtuMax = 100 -$elasticPool.DatabaseDtuMin = 50 -$elasticPool.Dtu = 800 -$elasticPool.Edition = "Standard" -$elasticPool.IncludeAllDatabases = $true -$elasticPool.Name = "my_ep" -$elasticPool.StorageMb = 800 * 1024 -Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -ElasticPoolCollection @($elasticPool) - - Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. -The server "MySqlServer" must have version 2.0, otherwise the command will fail. - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Stop-AzureSqlServerUpgrade - - - - Get-AzureSqlServerUpgrade - - - - - - - - Stop-AzureSqlDatabaseExecuteIndexRecommendation - - - - - - - Stop - AzureSqlDatabaseExecuteIndexRecommendation - - - - - - - - Stop-AzureSqlDatabaseExecuteIndexRecommendation - - ServerName - - - - String - - - DatabaseName - - - - String - - - IndexRecommendationName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - IndexRecommendationName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Stop-AzureSqlServerUpgrade - - Stops an Azure SQL Server Upgrade. - - - - - Stop - AzureSqlServerUpgrade - - - - The Stop-AzureSqlServerUpgrade cmdlet stops the upgrade process. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Stop-AzureSqlServerUpgrade - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - - ServerName - - The name of the Azure SQL Server to stop upgrading. - - String - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - - Profile - - In-memory profile. - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - - - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - SwitchParameter - - - - - - ServerName - - The name of the Azure SQL Server to stop upgrading. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - - - - WhatIf - - - - SwitchParameter - - SwitchParameter - - - - - - Confirm - - - - SwitchParameter - - SwitchParameter - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - - - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1: Stop a server upgrade -------------------------- - - PS C:\> - - Stop-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer - - Stop the request to upgrade server "MySqlServer" in resource group "MyResourceGroup". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Start-AzureSqlServerUpgrade - - - - Get-AzureSqlServerUpgrade - - - - - - - - Suspend-AzureSqlDatabase - - - - - - - Suspend - AzureSqlDatabase - - - - - - - - Suspend-AzureSqlDatabase - - ServerName - - - - String - - - DatabaseName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - - - - ServerName - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - - ResourceGroupName - - - - String - - String - - - - - - Profile - - - - AzureProfile - - AzureProfile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Use-AzureSqlServerAuditingPolicy - - Marks an Azure SQL Database as using its server's auditing policy. - - - - - Use - AzureSqlServerAuditingPolicy - - - - The Use-AzureSqlServerAuditingPolicy cmdlet marks an Azure SQL Database as using its server's auditing policy. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. If no auditing policy was defined already for the database server, this cmdlet would fail. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Use-AzureSqlServerAuditingPolicy - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - ServerName - - The name of the server. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the server. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName - - The name of the server. - - String - - String - - - none - - - DatabaseName - - The name of the database. - - String - - String - - - none - - - ResourceGroupName - - The name of the resource group containing the server. - - String - - String - - - none - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Use-AzureSqlDatabaseServerAuditPolicy - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - - - - - Disable-AzureSqlDatabaseDirectAccess - - Disables the option to directly access an Azure SQL Database (without auditing). - - - - - - - - - - The Disable-AzureSqlDatabaseDirectAccess cmdlet disables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet, directly accessing an Azure Sql Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - switchparameter - - switchparameter - - - none - - - ServerName - - Specifies the name of the database server holding the database. - - string - - string - - - none - - - DatabaseName - - Specifies the name of the database. Wildcards are not permitted. - - string - - string - - - none - - - ResourceGroupName - - Specifies the name of the resource group of the database. - - string - - string - - - none - - - Profile - - In-memory profile. - - azureprofile - - azureprofile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Disable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Enable-AzureSqlDatabaseDirectAccess - - - - - - - - Enable-AzureSqlDatabaseDirectAccess - - Enables the option to directly access an Azure SQL Database (with auditing). - - - - - - - - - - The Enable-AzureSqlDatabaseDirectAccess cmdlet enables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, directly accessing to an Azure SQL Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName). - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - switchparameter - - switchparameter - - - none - - - ServerName - - The name of the server containing the database. - - string - - string - - - none - - - DatabaseName - - The name of the database. - - string - - string - - - none - - - ResourceGroupName - - Specifies the name of the resource group of the database. - - string - - string - - - none - - - Profile - - In-memory profile. - - azureprofile - - azureprofile - - - none - - - - - - InputType - - - - - -None - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Enable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Disable-AzureSqlDatabaseDirectAccess - - - - - - - - Get-AzureSqlElasticPoolRecommendationDatabase - - - - - - - - - - - - - - - - - - ElasticPoolRecommendation - - - - string - - string - - - - - - DatabaseName - - - - string - - string - - - - - - ServerName - - - - string - - string - - - - - - ResourceGroupName - - - - string - - string - - - - - - Profile - - - - azureprofile - - azureprofile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSqlElasticPoolRecommendationMetrics - - - - - - - - - - - - - - - - - - ElasticPoolRecommendation - - - - string - - string - - - - - - ServerName - - - - string - - string - - - - - - ResourceGroupName - - - - string - - string - - - - - - Profile - - - - azureprofile - - azureprofile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + ResourceGroupName ServerName DatabaseName State + ----------------- ---------- ------------ ----- + resourcegroup1 server1 database1 Disabled + + + + + + + + + + + + + + Transparent Data Encryption with Azure SQL Database + https://msdn.microsoft.com/library/dn948096 + + + + + + + Set-AzureSqlElasticPool + + Updates properties for an Azure SQL elastic database pool. + + + + + Set + AzureSqlElasticPool + + + + The only properties of an existing pool that can be changed are its Pool DTUs, DTU min per database, and DTU max per database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlElasticPool + + ElasticPoolName + + The name of the Azure SQL elastic pool. + + String + + + Edition + + The edition cannot be changed. + + DatabaseEdition + + + Dtu + + The total shared DTU for the Azure SQL elastic pool. + + Int32 + + + StorageMB + + The storage limit for the Azure SQL elastic pool in MB. + + Int64 + + + DatabaseDtuMin + + The minimum DTU all Azure SQL Databases in the pool are guaranteed. + + Int32 + + + DatabaseDtuMax + + The maximum DTU any one Azure SQL Database in the pool can consume. + + Int32 + + + Tags + + The tags to associate with the Azure SQL elastic pool. + + Dictionary`2[String] + + + ServerName + + The name of the Azure SQL Server containing the elastic pool. + + String + + + ResourceGroupName + + Name of resource group of the Azure SQL Server containing the elastic pool to update. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ElasticPoolName + + The name of the Azure SQL elastic pool. + + String + + String + + + none + + + Edition + + The edition cannot be changed. + + DatabaseEdition + + DatabaseEdition + + + none + + + Dtu + + The total shared DTU for the Azure SQL elastic pool. + + Int32 + + Int32 + + + none + + + StorageMB + + The storage limit for the Azure SQL elastic pool in MB. + + Int64 + + Int64 + + + none + + + DatabaseDtuMin + + The minimum DTU all Azure SQL Databases in the pool are guaranteed. + + Int32 + + Int32 + + + none + + + DatabaseDtuMax + + The maximum DTU any one Azure SQL Database in the pool can consume. + + Int32 + + Int32 + + + none + + + Tags + + The tags to associate with the Azure SQL elastic pool. + + Dictionary`2[String] + + Dictionary`2[String] + + + none + + + ServerName + + The name of the Azure SQL Server containing the elastic pool. + + String + + String + + + none + + + ResourceGroupName + + Name of resource group of the Azure SQL Server containing the elastic pool to update. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlDatabaseElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" –Dtu 1000 –DatabaseDtuMax 100 –DatabaseDtuMin 20 + + The following command sets an elastic pool’s DTUs to 1000, DTU max per database to 100, and the DTU min per database to 20. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlElasticPool + + + + Get-AzureSqlElasticPoolActivity + + + + Get-AzureSqlElasticPoolDatabase + + + + Get-AzureSqlDatabaseActivity + + + + New-AzureSqlElasticPool + + + + Set-AzureSqlElasticPool + + + + + + + + Set-AzureSqlServer + + Update the properties for an Azure SQL Server. + + + + + Set + AzureSqlServer + + + + The Set-AzureSqlServer cmdlet updates the properties of an Azure SQL Server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlServer + + ServerName + + The name of the Azure SQL Server. + + String + + + SqlAdminPassword + + The new SQL administrator password for the server. + + SecureString + + + Tags + + The tags to associate with the Azure SQL Server. + + Dictionary`2[String] + + + ServerVersion + + The Azure SQL Server version to change to. + + String + + + Force + + Skip the confirmation message and update the Azure SQL Server. + + SwitchParameter + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + ServerName + + The name of the Azure SQL Server. + + String + + String + + + none + + + SqlAdminPassword + + The new SQL administrator password for the server. + + SecureString + + SecureString + + + none + + + Tags + + The tags to associate with the Azure SQL Server. + + Dictionary`2[String] + + Dictionary`2[String] + + + none + + + ServerVersion + + The Azure SQL Server version to change to. + + String + + String + + + none + + + Force + + Skip the confirmation message and update the Azure SQL Server. + + SwitchParameter + + SwitchParameter + + + none + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Set-AzureSqlServer + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlServerActiveDirectoryAdministrator + + Provisions an Azure Active Directory administrator for Azure SQL Server in the current subscription. + + + + + Set + AzureSqlServerActiveDirectoryAdministrator + + + + The Set-AzureSqlServerActiveDirectoryAdministrator cmdlet provisions an Azure Active Directory administrator for Azure SQL Server in the current subscription. + At any given time only one administrator can be provisioned + The following members of Azure Active Directory can be provisioned as an administrator for Azure SQL Server + Native members of Azure Active Directory + Federated members of Azure Active Directory + Imported members from other Azure Active Directories who are native or federated members + Active directory groups created as security groups + + Microsoft accounts (i.e. outllok.com, hotmail.com, live.com) or other guest accounts (i.e. gmail.com, yahoo.com) are not supported as administrators + For manageability purpose it is recommended to provision a dedicated Azure Active Directory group as an administrator + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlServerActiveDirectoryAdministrator + + DisplayName + + Diplay name of the Azure AD administrator (user or group) to be provisioned for SQL Server. + + String + + + ObjectId + + + The unique object ID of the Azure AD administrator to be provisioned for SQL Server. Required if Azure AD <DisplayName> parameter is not unique. + + + Guid + + + ServerName + + The name of the Azure SQL Server that contains the Azure Active Directory administrator you want to change. + + String + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server with the Azure Active Directory administrator to change. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + DisplayName + + Diplay name of the Azure AD administrator (user or group) to be provisioned for SQL Server. + + String + + String + + + + + + ObjectId + + + The unique object ID of the Azure AD administrator to be provisioned for SQL Server. Required if Azure AD <DisplayName> parameter is not unique. + + + Guid + + Guid + + + + + + ServerName + + The name of the Azure SQL Server that contains the Azure Active Directory administrator you want to change. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server with the Azure Active Directory administrator to change. + + String + + String + + + + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + + System.String + + + + + + + + OutputType + + + + + + System.Object + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" + + This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23" + + + + ResourceGroupName ServerName DisplayName ObjectId + ----------------- ---------- ----------- -------- + Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + + + + + + + + + + -------------------------- Code Example 2 -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "Bob Johns" + + This command provisions an Azure Active Directory user "Bob Johns" as an administrator for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23" + + + + ResourceGroupName ServerName DisplayName ObjectId + ----------------- ---------- ----------- -------- + Group-23 aad-managed-demo Bob Johns 11E95548-B179-4FE1-9AF4-ACA49D13ABB9 + + + + + + + + + + + + -------------------------- Code Example 3 -------------------------- + + PS C:\> + + PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" + + This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23". To enforce <DisplayName> uniqueness, an optional parameter <–ObjectId > "40b79501-b343-44ed-9ce7-da4c8cc7353b" representing Azure AD ObjectID for the DBAs group is included + + + + PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" + + ResourceGroupName ServerName DisplayName ObjectId + ----------------- ---------- ----------- -------- + Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + + + + + + + + + + + + Get-AzureSqlServerActiveDirectoryAdministrator + + + + Remove-AzureSqlServerActiveDirectoryAdministrator + + + + + + + + Start-AzureSqlServerUpgrade + + + + + + + Start + AzureSqlServerUpgrade + + + + + + + + Start-AzureSqlServerUpgrade + + ServerVersion + + + + String + + + ScheduleUpgradeAfterUtcDateTime + + + + Nullable`1[DateTime] + + + DatabaseCollection + + + + RecommendedDatabaseProperties[] + + + ElasticPoolCollection + + + + UpgradeRecommendedElasticPoolProperties[] + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ServerVersion + + + + String + + String + + + + + + ScheduleUpgradeAfterUtcDateTime + + + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + DatabaseCollection + + + + RecommendedDatabaseProperties[] + + RecommendedDatabaseProperties[] + + + + + + ElasticPoolCollection + + + + UpgradeRecommendedElasticPoolProperties[] + + UpgradeRecommendedElasticPoolProperties[] + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stop-AzureSqlServerUpgrade + + + + + + + Stop + AzureSqlServerUpgrade + + + + + + + + Stop-AzureSqlServerUpgrade + + Force + + + + SwitchParameter + + + ServerName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + Force + + + + SwitchParameter + + SwitchParameter + + + + + + ServerName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Use-AzureSqlServerAuditingPolicy + + Marks an Azure SQL Database as using its server's auditing policy. + + + + + Use + AzureSqlServerAuditingPolicy + + + + The Use-AzureSqlServerAuditingPolicy cmdlet marks an Azure SQL Database as using its server's auditing policy. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. If no auditing policy was defined already for the database server, this cmdlet would fail. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Use-AzureSqlServerAuditingPolicy + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + The name of the server. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the server. + + String + + String + + + none + + + DatabaseName + + The name of the database. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + None + + + + + + + OutputType + + + + + Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Use-AzureSqlDatabaseServerAuditPolicy + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Get-AzureSqlDatabaseActivity + + Gets the status of database operations in an elastic database pool. + + + + + + + + + + Gets the status of moving elastic databases in and out of an elastic pool. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + + + ElasticPoolName + + The name of the Azure SQL elastic pool. + + system.string + + system.string + + + none + + + Profile + + In-memory profile. + + microsoft.azure.common.authentication.models.azureprofile + + microsoft.azure.common.authentication.models.azureprofile + + + none + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server that the elastic pool is in. + + system.string + + system.string + + + none + + + ServerName + + The name of the Azure SQL Server that the elastic pool is in. + + system.string + + system.string + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" + + The following example returns the operation status of all databases in an elastic pool named "elasticpool1". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + New-AzureSqlServerFirewallRule + + Creates a new firewall rule for an Azure SQL Database server. + + + + + + + + + + The New-AzureSqlServerFirewallRule cmdlet creates a new firewall rule for the specified SQL Database server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + + + AllowAllAzureIPs + + Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server. + + switchparameter + + switchparameter + + + none + + + EndIpAddress + + End value of the IP address range. + + system.string + + system.string + + + none + + + FirewallRuleName + + The name of the new firewall rule. + + system.string + + system.string + + + none + + + Profile + + In-memory profile. + + microsoft.azure.common.authentication.models.azureprofile + + microsoft.azure.common.authentication.models.azureprofile + + + none + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. + + system.string + + system.string + + + none + + + ServerName + + The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. + + system.string + + system.string + + + none + + + StartIpAddress + + Start value of the IP address range. + + system.string + + system.string + + + none + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>New-AzureSqlServerFirewallRule -ResourceGroupName "resourcegroup1" -ServerName "server1" -FirewallRuleName "rule1" -StartIpAddress "192.168.0.198" -EndIpAddress "192.168.0.199" + + The following example creates a new firewall rule. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlServerFirewallRule + + + + Remove-AzureSqlServerFirewallRule + + + + Set-AzureSqlServerFirewallRule + + + + + + + + Start-AzureSqlServerUpgrade + + Starts upgrading an Azure SQL V11 server to a V12 server. + + + + + Start + AzureSqlServerUpgrade + + + + + The Start-AzureSqlServerUpgrade cmdlet starts the upgrade of a SQL V11 server to V12. + Monitor the progress of an upgrade with the Get-AzureSqlServerUpgrade cmdlet. + You can stop the upgrade process with the Stop-AzureSqlServerUpgrade cmdlet. + + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode -Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + + + ServerVersion + + The target version to upgrade the Azure SQL Server. Currently the version must be "12.0". + + String + + String + + + + + + ScheduleUpgradeAfterUtcDateTime + + The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + DatabaseCollection + + Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. + + RecommendedDatabaseProperties[] + + RecommendedDatabaseProperties[] + + + + + + ElasticPoolCollection + + Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. + + UpgradeRecommendedElasticPoolProperties[] + + UpgradeRecommendedElasticPoolProperties[] + + + + + + ServerName + + The name of the Azure SQL Server to upgrade. + + String + + String + + + + + + ResourceGroupName + + The name of resource group containing the Azure SQL Server. + + String + + String + + + + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1: Simple server upgrade -------------------------- + + PS C:\> + + Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 + + + Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0 + The server "MySqlServer" must have version 2.0, otherwise the command will fail. + + + + + + + + + + + + + + + -------------------------- Example 2: Upgrade server with schedule time and target database properties -------------------------- + + PS C:\> + + + $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() + $databaseMap = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.RecommendedDatabaseProperties + $databaseMap.Name = "testdb" + $databaseMap.TargetEdition = "Standard" + $databaseMap.TargetServiceLevelObjective = "S0" + Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -DatabaseCollection @($databaseMap) + + + + Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. + The server "MySqlServer" must have version 2.0 and a database named "testdb", otherwise the command will fail. + + + The earliest time to upgrade is 5 minutes after the cmdlet invocation. + After upgrade, the database "testdb" will have edition "Standard" and Service Level Objective "S0". + + + + + + + + + + + + + + + -------------------------- Example 3: Upgrade server with schedule time and target elastic pool properties -------------------------- + + PS C:\> + + + $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() + $elasticPool = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.UpgradeRecommendedElasticPoolProperties + $elasticPool.DatabaseDtuMax = 100 + $elasticPool.DatabaseDtuMin = 50 + $elasticPool.Dtu = 800 + $elasticPool.Edition = "Standard" + $elasticPool.IncludeAllDatabases = $true + $elasticPool.Name = "my_ep" + $elasticPool.StorageMb = 800 * 1024 + Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -ElasticPoolCollection @($elasticPool) + + + + Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. + The server "MySqlServer" must have version 2.0, otherwise the command will fail. + + + The earliest time to upgrade is 5 minutes after the cmdlet invocation. + After upgrade, all databases will be in the elastic pool "my_ep". + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Stop-AzureSqlServerUpgrade + + + + Get-AzureSqlServerUpgrade + + + + + + + + Stop-AzureSqlServerUpgrade + + Stops an Azure SQL Server Upgrade. + + + + + Stop + AzureSqlServerUpgrade + + + + The Stop-AzureSqlServerUpgrade cmdlet stops the upgrade process. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + SwitchParameter + + + + + + ServerName + + The name of the Azure SQL Server to stop upgrading. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + String + + + + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1: Stop a server upgrade -------------------------- + + PS C:\> + + Stop-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer + + Stop the request to upgrade server "MySqlServer" in resource group "MyResourceGroup". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Start-AzureSqlServerUpgrade + + + + Get-AzureSqlServerUpgrade + + + + + + + + Get-AzureSqlServerUpgrade + + Gets the status of an Azure SQL Server Upgrade. + + + + + Get + AzureSqlServerUpgrade + + + + The Get-AzureSqlServerUpgrade cmdlet returns the status of an Azure SQL Server Upgrade. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + + + ServerName + + The name of the Azure SQL Server to get upgrade status. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + String + + + + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1: Get status of a server upgrade -------------------------- + + PS C:\> + + Get-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer | Format-List + + Get the status of an upgrade request from server "MySqlServer" in resource group "MyResourceGroup". + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Start-AzureSqlServerUpgrade + + + + Stop-AzureSqlServerUpgrade + + + + + + + + New-AzureSqlDatabaseCopy + + Creates a copy of an existing Azure SQL Database using the snapshot of the data at the time of the call. + + + + + New + AzureSqlDatabaseCopy + + + + This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used to create a one-time database copy. It returns the database object of the copy. + Note: Use New-AzureSqlDatabaseSecondary for setting up geo-replication for a database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlDatabaseCopy + + DatabaseName + + The name of the Azure SQL Database to be copied. + + String + + + ServiceObjectiveName + + The name of the service objective to assign to the copy. + + String + + + ElasticPoolName + + The name of the Elastic Pool to put the copy in. + + String + + + Tags + + The tags to associate with the Azure SQL Database copy. + + Dictionary`2[String] + + + CopyResourceGroupName + + The name of the Azure Resource Group to create copy in. + + String + + + CopyServerName + + The name of the Azure SQL Server to create copy in. + + String + + + CopyDatabaseName + + The name of the Azure SQL Database copy. + + String + + + ServerName + + The name of the Azure SQL Server the database to be copied is in. + + String + + + ResourceGroupName + + The name of the Azure Resource Group the database to be copied is in. + + String + + + Profile + + + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to be copied. + + String + + String + + + + + + ServiceObjectiveName + + The name of the service objective to assign to the copy. + + String + + String + + + + + + ElasticPoolName + + The name of the Elastic Pool to put the copy in. + + String + + String + + + + + + Tags + + The tags to associate with the Azure SQL Database copy. + + Dictionary`2[String] + + Dictionary`2[String] + + + + + + CopyResourceGroupName + + The name of the Azure Resource Group to create copy in. + + String + + String + + + + + + CopyServerName + + The name of the Azure SQL Server to create copy in. + + String + + String + + + + + + CopyDatabaseName + + The name of the Azure SQL Database copy. + + String + + String + + + + + + ServerName + + The name of the Azure SQL Server the database to be copied is in. + + String + + String + + + + + + ResourceGroupName + + The name of the Azure Resource Group the database to be copied is in. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + + + + + + + New-AzureSqlDatabaseSecondary + + Creates a new secondary database for an existing Azure SQL Database and starts data replication. + + + + + New + AzureSqlDatabaseSecondary + + + + This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used for setting up geo-replication for a database. It returns the geo-replication link object from the primary to the secondary database. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlDatabaseSecondary + + DatabaseName + + The name of the Azure SQL Database to act as primary. + + String + + + SecondaryServiceObjectiveName + + The name of the service objective to assign to the secondary. + + String + + + SecondaryElasticPoolName + + The name of the Elastic Pool to put the secondary in. + + String + + + Tags + + The tags to associate with the Azure SQL Database replication link. + + Dictionary`2[String] + + + PartnerResourceGroupName + + The name of the Azure Resource Group to create secondary in. + + String + + + PartnerServerName + + The name of the Azure SQL Server to create secondary in. + + String + + + AllowConnections + + The read intent of the secondary Azure SQL Database. + + AllowConnections + + + ServerName + + The name of the Azure SQL Server of the primary Azure SQL Database. + + String + + + ResourceGroupName + + The name of the Azure Resource Group of the primary Azure SQL Database. + + String + + + Profile + + + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to act as primary. + + String + + String + + + + + + SecondaryServiceObjectiveName + + The name of the service objective to assign to the secondary. + + String + + String + + + + + + SecondaryElasticPoolName + + The name of the Elastic Pool to put the secondary in. + + String + + String + + + + + + Tags + + The tags to associate with the Azure SQL Database replication link. + + Dictionary`2[String] + + Dictionary`2[String] + + + + + + PartnerResourceGroupName + + The name of the Azure Resource Group to create secondary in. + + String + + String + + + + + + PartnerServerName + + The name of the Azure SQL Server to create secondary in. + + String + + String + + + + + + AllowConnections + + The read intent of the secondary Azure SQL Database. + + AllowConnections + + AllowConnections + + + + + + ServerName + + The name of the Azure SQL Server of the primary Azure SQL Database. + + String + + String + + + + + + ResourceGroupName + + The name of the Azure Resource Group of the primary Azure SQL Database. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + + + + + + + Remove-AzureSqlDatabaseSecondary + + Terminates data replication between an Azure SQL Database and the specified secondary database. + + + + + Remove + AzureSqlDatabaseSecondary + + + + This cmdlet replaces the Stop-AzureSqlDatabaseCopy cmdlet. It will force terminates the geo-replication link. There is no replication synchronization prior to termination. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlDatabaseSecondary + + DatabaseName + + The name of the primary Azure SQL Database with the replication link to remove. + + String + + + PartnerResourceGroupName + + The name of the partner Azure Resource Group. + + String + + + PartnerServerName + + The name of the partner Azure SQL Server. + + String + + + ServerName + + The name of the Azure SQL Server with the replication link to remove. + + String + + + ResourceGroupName + + The name of the Azure Resource Group with the replication link to remove. + + String + + + Profile + + + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + DatabaseName + + The name of the primary Azure SQL Database with the replication link to remove. + + String + + String + + + + + + PartnerResourceGroupName + + The name of the partner Azure Resource Group. + + String + + String + + + + + + PartnerServerName + + The name of the partner Azure SQL Server. + + String + + String + + + + + + ServerName + + The name of the Azure SQL Server with the replication link to remove. + + String + + String + + + + + + ResourceGroupName + + The name of the Azure Resource Group with the replication link to remove. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + + + + + + + Get-AzureSqlDatabaseReplicationLink + + Gets the geo-replication links between an Azure SQL Database and the specified Azure Resource Group or Azure SQL Server. + + + + + Get + AzureSqlDatabaseReplicationLink + + + + This cmdlet replaces the Get-AzureSqlDatabaseCopy cmdlet. It will return all geo-replication links between the specified Azure Resource Group or Azure SQL Server. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlDatabaseReplicationLink + + DatabaseName + + The name of the Azure SQL Database to retrieve links for. + + String + + + PartnerResourceGroupName + + The name of the Azure Resource Group for the partner. + + String + + + ServerName + + The name of the Azure SQL Server for the database to retrieve links for. + + String + + + ResourceGroupName + + The name of the Azure Resource Group for the database to retrieve links for. + + String + + + Profile + + + + AzureProfile + + + + Get-AzureSqlDatabaseReplicationLink + + DatabaseName + + The name of the Azure SQL Database to retrieve links for. + + String + + + PartnerResourceGroupName + + The name of the Azure Resource Group for the partner. + + String + + + PartnerServerName + + The name of the Azure SQL Server for the partner. + + String + + + ServerName + + The name of the Azure SQL Server for the database to retrieve links for. + + String + + + ResourceGroupName + + The name of the Azure Resource Group for the database to retrieve links for. + + String + + + Profile + + + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to retrieve links for. + + String + + String + + + + + + PartnerResourceGroupName + + The name of the Azure Resource Group for the partner. + + String + + String + + + + + + ServerName + + The name of the Azure SQL Server for the database to retrieve links for. + + String + + String + + + + + + ResourceGroupName + + The name of the Azure Resource Group for the database to retrieve links for. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + PartnerServerName + + The name of the Azure SQL Server for the partner. + + String + + String + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + + + + + + + Set-AzureSqlDatabaseSecondary + + Switches a secondary Azure SQL Database to the primary in order to failover. + + + + + Set + AzureSqlDatabaseSecondary + + + + This cmdlet is designed as a general configuration command, but at the moment it is limited to initiating failover. Use it with the –AllowDataLoss parameter to initiate a force failover during an outage. You don’t have to specify it when performing a planned operation , such as DR drill. In the latter case the secondary databases will be synchronized with the primary before switching. + + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Switch-AzureMode –Name AzureResourceManager + + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabaseSecondary + + DatabaseName + + + The name of the Azure SQL Database Secondary. + + + String + + + PartnerResourceGroupName + + + The name of the Azure Resource Group of the partner Azure SQL Database. + + + String + + + Failover + + Determines if this operation is a failover. + + SwitchParameter + + + AllowDataLoss + + Determines if this failover operation will allow data loss. + + SwitchParameter + + + ServerName + + + The name of the Azure SQL Server of the Azure SQL Database Secondary. + + + String + + + ResourceGroupName + + + The name of the Azure Resource Group of the Azure SQL Database Secondary. + + + String + + + Profile + + + + AzureProfile + + + + + + DatabaseName + + + The name of the Azure SQL Database Secondary. + + + String + + String + + + + + + PartnerResourceGroupName + + + The name of the Azure Resource Group of the partner Azure SQL Database. + + + String + + String + + + + + + Failover + + Determines if this operation is a failover. + + SwitchParameter + + SwitchParameter + + + + + + AllowDataLoss + + Determines if this failover operation will allow data loss. + + SwitchParameter + + SwitchParameter + + + + + + ServerName + + + The name of the Azure SQL Server of the Azure SQL Database Secondary. + + + String + + String + + + + + + ResourceGroupName + + + The name of the Azure Resource Group of the Azure SQL Database Secondary. + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From c66a1e53a175d4e59eb21da8c5ae636bb65582a4 Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Thu, 10 Sep 2015 17:47:46 -0700 Subject: [PATCH 56/58] Fix for non-interactive scenario --- src/Common/Commands.Common/AzurePSCmdlet.cs | 25 ++++++++++----------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/Common/Commands.Common/AzurePSCmdlet.cs b/src/Common/Commands.Common/AzurePSCmdlet.cs index fece0560f2a5..81c56d19c428 100644 --- a/src/Common/Commands.Common/AzurePSCmdlet.cs +++ b/src/Common/Commands.Common/AzurePSCmdlet.cs @@ -254,28 +254,27 @@ protected void SaveDataCollectionProfile() protected bool CheckIfInteractive() { - if (this.Host == null || this.Host.UI == null || this.Host.UI.RawUI == null) - { - return false; - } - bool interactive = true; - try + if (this.Host == null || this.Host.UI == null || this.Host.UI.RawUI == null) { - var test = this.Host.UI.RawUI.KeyAvailable; + interactive = false; } - catch (HostException ex) + else { - if (ex.Message.StartsWith("A command that prompts the user failed")) + try { - interactive = false; + var test = this.Host.UI.RawUI.KeyAvailable; } - else + catch { - throw ex; + interactive = false; } } + if (!interactive && !_dataCollectionProfile.EnableAzureDataCollection.HasValue) + { + _dataCollectionProfile.EnableAzureDataCollection = false; + } return interactive; } @@ -288,7 +287,7 @@ protected void PromptForDataCollectionProfileIfNotExists() // Initialize it from the environment variable or profile file. InitializeDataCollectionProfile(); - if (CheckIfInteractive() && !_dataCollectionProfile.EnableAzureDataCollection.HasValue) + if (!_dataCollectionProfile.EnableAzureDataCollection.HasValue && CheckIfInteractive()) { WriteWarning(Resources.DataCollectionPrompt); From d82db346f503cd61d2ed88cf502a735854a4923a Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Sun, 13 Sep 2015 15:03:53 -0700 Subject: [PATCH 57/58] Split ScenarioTest.Common into ASM & ARM --- src/Common/AzurePSCmdlet.cs | 82 +-- src/Common/Commands.Common/AzureSMCmdlet.cs | 77 +++ .../EnableAzureDataCollection.cs | 2 +- .../AzureRMCmdlet.cs | 81 +++ .../Commands.ResourceManager.Common.csproj | 21 + .../Common/TestMockSupport.cs | 31 + .../Properties/Resources.Designer.cs | 120 ++++ .../Properties/Resources.resx | 148 +++++ .../packages.config | 1 + ...mmands.ResourceManager.Profile.Test.csproj | 4 - .../Commands.ScenarioTests.Common.csproj | 5 - .../Assert.ps1 | 383 ++++++++++++ ...cenarioTests.ResourceManager.Common.csproj | 192 ++++++ .../Common.ps1 | 546 ++++++++++++++++++ .../Constants.cs | 91 +++ .../EnvironmentSetupHelper.cs | 320 ++++++++++ .../MSSharedLibKey.snk | Bin 0 -> 160 bytes .../Mocks/MockAccessToken.cs | 36 ++ .../Mocks/MockAccessTokenProvider.cs | 45 ++ .../MockCertificateAuthenticationFactory.cs | 66 +++ .../Mocks/MockClientFactory.cs | 239 ++++++++ .../Mocks/MockCommandRuntime.cs | 155 +++++ .../Mocks/MockTokenAuthenticationFactory.cs | 93 +++ .../PSCmdletExtensions.cs | 48 ++ .../PermissiveRecordMatcher.cs | 48 ++ .../PowerShellExtensions.cs | 219 +++++++ .../Properties/AssemblyInfo.cs | 36 ++ .../RMTestBase.cs | 0 .../SMTestBase.cs | 89 +++ .../packages.config | 23 + src/ResourceManager.sln | 14 +- .../Commands.ApiManagement.Test.csproj | 4 - ...piManagement.ServiceManagement.Test.csproj | 4 - ....ResourceManagement.Automation.Test.csproj | 4 - .../Commands.AzureBackup.Test.csproj | 4 - .../Commands.Batch.Test.csproj | 6 +- .../Commands.UsageAggregates.Test.csproj | 4 - .../Commands.Compute.Test.csproj | 4 - .../Commands.DataFactories.Test.csproj | 6 +- .../Commands.Dns.Test.csproj | 4 - .../Commands.HDInsight.Test.csproj | 4 - .../Commands.Insights.Test.csproj | 4 - .../Commands.KeyVault.Test.csproj | 4 - .../Commands.Network.Test.csproj | 4 - .../Commands.OperationalInsights.Test.csproj | 4 - .../Commands.RedisCache.Test.csproj | 4 - .../Commands.Resources.Test.csproj | 4 - .../Commands.SiteRecovery.Test.csproj | 4 - .../Commands.Sql.Test.csproj | 4 - .../Commands.Management.Storage.Test.csproj | 4 - .../Commands.StreamAnalytics.Test.csproj | 4 - .../Commands.TrafficManager2.Test.csproj | 4 - .../Commands.Websites.Test.csproj | 4 - 53 files changed, 3121 insertions(+), 186 deletions(-) create mode 100644 src/Common/Commands.ResourceManager.Common/Common/TestMockSupport.cs create mode 100644 src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs create mode 100644 src/Common/Commands.ResourceManager.Common/Properties/Resources.resx create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Assert.ps1 create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Common.ps1 create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Constants.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/MSSharedLibKey.snk create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockAccessToken.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockAccessTokenProvider.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCertificateAuthenticationFactory.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCommandRuntime.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockTokenAuthenticationFactory.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/PSCmdletExtensions.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/PermissiveRecordMatcher.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/PowerShellExtensions.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/Properties/AssemblyInfo.cs rename src/Common/{Commands.ScenarioTests.Common => Commands.ScenarioTests.ResourceManager.Common}/RMTestBase.cs (100%) create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs create mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config diff --git a/src/Common/AzurePSCmdlet.cs b/src/Common/AzurePSCmdlet.cs index 64f0dcd48a66..c8c71e535731 100644 --- a/src/Common/AzurePSCmdlet.cs +++ b/src/Common/AzurePSCmdlet.cs @@ -21,13 +21,8 @@ using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.WindowsAzure.Commands.Common; -using Microsoft.WindowsAzure.Commands.Common.Properties; using Newtonsoft.Json; -using System; -using System.Collections.Concurrent; -using System.Diagnostics; using System.IO; -using System.Management.Automation; using System.Management.Automation.Host; using System.Threading; @@ -56,9 +51,6 @@ protected virtual bool IsErrorMetricEnabled get { return true; } } - [Parameter(Mandatory = false, HelpMessage = "In-memory profile.")] - public AzureProfile Profile { get; set; } - /// /// Gets the PowerShell module name used for user agent header. /// By default uses "Azurepowershell" @@ -160,18 +152,7 @@ public static bool IsDataCollectionAllowed() /// Save the current data collection profile Json data into the default file path /// /// - protected void SaveDataCollectionProfile() - { - if (_dataCollectionProfile == null) - { - InitializeDataCollectionProfile(); - } - - string fileFullPath = Path.Combine(AzureSession.ProfileDirectory, AzurePSDataCollectionProfile.DefaultFileName); - var contents = JsonConvert.SerializeObject(_dataCollectionProfile); - AzureSession.DataStore.WriteFile(fileFullPath, contents); - WriteWarning(string.Format(Resources.DataCollectionSaveFileInformation, fileFullPath)); - } + protected abstract void SaveDataCollectionProfile(); protected bool CheckIfInteractive() { @@ -203,47 +184,7 @@ protected bool CheckIfInteractive() /// Prompt for the current data collection profile /// /// - protected void PromptForDataCollectionProfileIfNotExists() - { - // Initialize it from the environment variable or profile file. - InitializeDataCollectionProfile(); - - if (!_dataCollectionProfile.EnableAzureDataCollection.HasValue && CheckIfInteractive()) - { - WriteWarning(Resources.DataCollectionPrompt); - - const double timeToWaitInSeconds = 60; - var status = string.Format(Resources.DataCollectionConfirmTime, timeToWaitInSeconds); - ProgressRecord record = new ProgressRecord(0, Resources.DataCollectionActivity, status); - - var startTime = DateTime.Now; - var endTime = DateTime.Now; - double elapsedSeconds = 0; - - while (!this.Host.UI.RawUI.KeyAvailable && elapsedSeconds < timeToWaitInSeconds) - { - Thread.Sleep(TimeSpan.FromMilliseconds(10)); - endTime = DateTime.Now; - - elapsedSeconds = (endTime - startTime).TotalSeconds; - record.PercentComplete = ((int)elapsedSeconds * 100 / (int)timeToWaitInSeconds); - WriteProgress(record); - } - - bool enabled = false; - if (this.Host.UI.RawUI.KeyAvailable) - { - KeyInfo keyInfo = this.Host.UI.RawUI.ReadKey(ReadKeyOptions.NoEcho | ReadKeyOptions.AllowCtrlC | ReadKeyOptions.IncludeKeyDown); - enabled = (keyInfo.Character == 'Y' || keyInfo.Character == 'y'); - } - - _dataCollectionProfile.EnableAzureDataCollection = enabled; - - WriteWarning(enabled ? Resources.DataCollectionConfirmYes : Resources.DataCollectionConfirmNo); - - SaveDataCollectionProfile(); - } - } + protected abstract void PromptForDataCollectionProfileIfNotExists(); /// /// Cmdlet begin process. Write to logs, setup Http Tracing and initialize profile @@ -430,24 +371,7 @@ private void FlushDebugMessages() } } - protected void InitializeQosEvent() - { - QosEvent = new AzurePSQoSEvent() - { - CmdletType = this.GetType().Name, - IsSuccess = true, - }; - - if (this.Profile != null && this.Profile.DefaultSubscription != null) - { - QosEvent.Uid = MetricHelper.GenerateSha256HashString( - this.Profile.DefaultSubscription.Id.ToString()); - } - else - { - QosEvent.Uid = "defaultid"; - } - } + protected abstract void InitializeQosEvent(); /// /// Invoke this method when the cmdlet is completed or terminated. diff --git a/src/Common/Commands.Common/AzureSMCmdlet.cs b/src/Common/Commands.Common/AzureSMCmdlet.cs index f55c8e982246..b9336aa69b48 100644 --- a/src/Common/Commands.Common/AzureSMCmdlet.cs +++ b/src/Common/Commands.Common/AzureSMCmdlet.cs @@ -22,6 +22,9 @@ using Microsoft.IdentityModel.Clients.ActiveDirectory; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Common.Properties; +using Newtonsoft.Json; +using System.Threading; +using System.Management.Automation.Host; namespace Microsoft.WindowsAzure.Commands.Utilities.Common { @@ -131,6 +134,80 @@ protected static void SetTokenCacheForProfile(AzureSMProfile profile) } } + protected override void SaveDataCollectionProfile() + { + if (_dataCollectionProfile == null) + { + InitializeDataCollectionProfile(); + } + + string fileFullPath = Path.Combine(AzureSession.ProfileDirectory, AzurePSDataCollectionProfile.DefaultFileName); + var contents = JsonConvert.SerializeObject(_dataCollectionProfile); + AzureSession.DataStore.WriteFile(fileFullPath, contents); + WriteWarning(string.Format(Resources.DataCollectionSaveFileInformation, fileFullPath)); + } + + protected override void PromptForDataCollectionProfileIfNotExists() + { + // Initialize it from the environment variable or profile file. + InitializeDataCollectionProfile(); + + if (!_dataCollectionProfile.EnableAzureDataCollection.HasValue && CheckIfInteractive()) + { + WriteWarning(Resources.DataCollectionPrompt); + + const double timeToWaitInSeconds = 60; + var status = string.Format(Resources.DataCollectionConfirmTime, timeToWaitInSeconds); + ProgressRecord record = new ProgressRecord(0, Resources.DataCollectionActivity, status); + + var startTime = DateTime.Now; + var endTime = DateTime.Now; + double elapsedSeconds = 0; + + while (!this.Host.UI.RawUI.KeyAvailable && elapsedSeconds < timeToWaitInSeconds) + { + Thread.Sleep(TimeSpan.FromMilliseconds(10)); + endTime = DateTime.Now; + + elapsedSeconds = (endTime - startTime).TotalSeconds; + record.PercentComplete = ((int)elapsedSeconds * 100 / (int)timeToWaitInSeconds); + WriteProgress(record); + } + + bool enabled = false; + if (this.Host.UI.RawUI.KeyAvailable) + { + KeyInfo keyInfo = this.Host.UI.RawUI.ReadKey(ReadKeyOptions.NoEcho | ReadKeyOptions.AllowCtrlC | ReadKeyOptions.IncludeKeyDown); + enabled = (keyInfo.Character == 'Y' || keyInfo.Character == 'y'); + } + + _dataCollectionProfile.EnableAzureDataCollection = enabled; + + WriteWarning(enabled ? Resources.DataCollectionConfirmYes : Resources.DataCollectionConfirmNo); + + SaveDataCollectionProfile(); + } + } + + protected override void InitializeQosEvent() + { + QosEvent = new AzurePSQoSEvent() + { + CmdletType = this.GetType().Name, + IsSuccess = true, + }; + + if (this.Profile != null && this.Profile.DefaultSubscription != null) + { + QosEvent.Uid = MetricHelper.GenerateSha256HashString( + this.Profile.DefaultSubscription.Id.ToString()); + } + else + { + QosEvent.Uid = "defaultid"; + } + } + /// /// Cmdlet begin process. Write to logs, setup Http Tracing and initialize profile /// diff --git a/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs b/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs index f9c668121e9e..e65c69a9bd4f 100644 --- a/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs +++ b/src/Common/Commands.Profile/DataCollection/EnableAzureDataCollection.cs @@ -19,7 +19,7 @@ namespace Microsoft.WindowsAzure.Commands.Profile { [Cmdlet(VerbsLifecycle.Enable, "AzureDataCollection")] - public class EnableAzureDataCollectionCommand : AzurePSCmdlet + public class EnableAzureDataCollectionCommand : AzureSMCmdlet { [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] public override void ExecuteCmdlet() diff --git a/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs b/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs index 96994ead919b..8ac6ac7b9abb 100644 --- a/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs +++ b/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs @@ -16,6 +16,13 @@ using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.IO; +using Newtonsoft.Json; +using Microsoft.Azure.Commands.ResourceManager.Common.Properties; +using System; +using System.Threading; +using System.Management.Automation.Host; +using Microsoft.WindowsAzure.Commands.Common; namespace Microsoft.Azure.Commands.ResourceManager.Common { @@ -52,5 +59,79 @@ protected override AzureContext DefaultContext return DefaultProfile.DefaultContext; } } + + protected override void SaveDataCollectionProfile() + { + if (_dataCollectionProfile == null) + { + InitializeDataCollectionProfile(); + } + + string fileFullPath = Path.Combine(AzureSession.ProfileDirectory, AzurePSDataCollectionProfile.DefaultFileName); + var contents = JsonConvert.SerializeObject(_dataCollectionProfile); + AzureSession.DataStore.WriteFile(fileFullPath, contents); + WriteWarning(string.Format(Resources.DataCollectionSaveFileInformation, fileFullPath)); + } + + protected override void PromptForDataCollectionProfileIfNotExists() + { + // Initialize it from the environment variable or profile file. + InitializeDataCollectionProfile(); + + if (!_dataCollectionProfile.EnableAzureDataCollection.HasValue && CheckIfInteractive()) + { + WriteWarning(Resources.DataCollectionPrompt); + + const double timeToWaitInSeconds = 60; + var status = string.Format(Resources.DataCollectionConfirmTime, timeToWaitInSeconds); + ProgressRecord record = new ProgressRecord(0, Resources.DataCollectionActivity, status); + + var startTime = DateTime.Now; + var endTime = DateTime.Now; + double elapsedSeconds = 0; + + while (!this.Host.UI.RawUI.KeyAvailable && elapsedSeconds < timeToWaitInSeconds) + { + Thread.Sleep(TimeSpan.FromMilliseconds(10)); + endTime = DateTime.Now; + + elapsedSeconds = (endTime - startTime).TotalSeconds; + record.PercentComplete = ((int)elapsedSeconds * 100 / (int)timeToWaitInSeconds); + WriteProgress(record); + } + + bool enabled = false; + if (this.Host.UI.RawUI.KeyAvailable) + { + KeyInfo keyInfo = this.Host.UI.RawUI.ReadKey(ReadKeyOptions.NoEcho | ReadKeyOptions.AllowCtrlC | ReadKeyOptions.IncludeKeyDown); + enabled = (keyInfo.Character == 'Y' || keyInfo.Character == 'y'); + } + + _dataCollectionProfile.EnableAzureDataCollection = enabled; + + WriteWarning(enabled ? Resources.DataCollectionConfirmYes : Resources.DataCollectionConfirmNo); + + SaveDataCollectionProfile(); + } + } + + protected override void InitializeQosEvent() + { + QosEvent = new AzurePSQoSEvent() + { + CmdletType = this.GetType().Name, + IsSuccess = true, + }; + + if (this.DefaultContext != null && this.DefaultContext.Subscription != null) + { + QosEvent.Uid = MetricHelper.GenerateSha256HashString( + this.DefaultContext.Subscription.Id.ToString()); + } + else + { + QosEvent.Uid = "defaultid"; + } + } } } diff --git a/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index ff1ad1950375..62327dbce027 100644 --- a/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -53,6 +53,9 @@ False ..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll + + ..\..\packages\Microsoft.ApplicationInsights.1.1.1-beta\lib\net45\Microsoft.ApplicationInsights.dll + False ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll @@ -143,6 +146,9 @@ Common\AzurePowerShell.cs + + Common\AzurePSDataCollectionProfile.cs + Common\CmdletExtensions.cs @@ -155,6 +161,9 @@ Common\GeneralUtilities.cs + + Common\MetricHelper.cs + Common\PowerShellUtilities.cs @@ -165,11 +174,23 @@ Common\SecureStringExtensions.cs + + + True + True + Resources.resx + Designer + + + ResXFileCodeGenerator + Resources.Designer.cs + + diff --git a/src/Common/Commands.ResourceManager.Common/Common/TestMockSupport.cs b/src/Common/Commands.ResourceManager.Common/Common/TestMockSupport.cs new file mode 100644 index 000000000000..5d65a3864fb9 --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/Common/TestMockSupport.cs @@ -0,0 +1,31 @@ + +// ---------------------------------------------------------------------------------- +// +// 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.Utilities.Common +{ + public class TestMockSupport + { + //a.k.a when you run under Playback mode + public static bool RunningMocked { get; set; } + + public static void Delay(int milliSeconds) + { + if (!RunningMocked) + { + System.Threading.Thread.Sleep(milliSeconds); + } + } + } +} diff --git a/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs b/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs new file mode 100644 index 000000000000..c5d450b83a96 --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs @@ -0,0 +1,120 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.ResourceManager.Common.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + 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.ResourceManager.Common.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Microsoft Azure PowerShell Data Collection Confirmation. + /// + internal static string DataCollectionActivity { + get { + return ResourceManager.GetString("DataCollectionActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You choose not to participate in Microsoft Azure PowerShell data collection.. + /// + internal static string DataCollectionConfirmNo { + get { + return ResourceManager.GetString("DataCollectionConfirmNo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This confirmation message will be dismissed in '{0}' second(s).... + /// + internal static string DataCollectionConfirmTime { + get { + return ResourceManager.GetString("DataCollectionConfirmTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You choose to participate in Microsoft Azure PowerShell data collection.. + /// + internal static string DataCollectionConfirmYes { + get { + return ResourceManager.GetString("DataCollectionConfirmYes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microsoft Azure PowerShell collects data about how users use PowerShell cmdlets and some problems they encounter. Microsoft uses this information to improve our PowerShell cmdlets. Participation is voluntary and when you choose to participate your device automatically sends information to Microsoft about how you use Azure PowerShell. + /// + ///If you choose to participate, you can stop at any time by using Azure PowerShell as follows: + ///1. Use the Disable-AzureDataCollection cmdlet to turn the feature Off. The [rest of string was truncated]";. + /// + internal static string DataCollectionPrompt { + get { + return ResourceManager.GetString("DataCollectionPrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The setting profile has been saved to the following path '{0}'.. + /// + internal static string DataCollectionSaveFileInformation { + get { + return ResourceManager.GetString("DataCollectionSaveFileInformation", resourceCulture); + } + } + } +} diff --git a/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx b/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx new file mode 100644 index 000000000000..1fae0c363fce --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Microsoft Azure PowerShell Data Collection Confirmation + + + You choose not to participate in Microsoft Azure PowerShell data collection. + + + This confirmation message will be dismissed in '{0}' second(s)... + + + You choose to participate in Microsoft Azure PowerShell data collection. + + + Microsoft Azure PowerShell collects data about how users use PowerShell cmdlets and some problems they encounter. Microsoft uses this information to improve our PowerShell cmdlets. Participation is voluntary and when you choose to participate your device automatically sends information to Microsoft about how you use Azure PowerShell. + +If you choose to participate, you can stop at any time by using Azure PowerShell as follows: +1. Use the Disable-AzureDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureResourceManager module +To disable data collection: PS > Disable-AzureDataCollection + +If you choose to not participate, you can enable at any time by using Azure PowerShell as follows: +1. Use the Enable-AzureDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureResourceManager module +To enable data collection: PS > Enable-AzureDataCollection + +Select Y to enable data collection [Y/N]: + + + The setting profile has been saved to the following path '{0}'. + + \ No newline at end of file diff --git a/src/Common/Commands.ResourceManager.Common/packages.config b/src/Common/Commands.ResourceManager.Common/packages.config index 3ec82649e831..e51545f5fd4f 100644 --- a/src/Common/Commands.ResourceManager.Common/packages.config +++ b/src/Common/Commands.ResourceManager.Common/packages.config @@ -1,6 +1,7 @@  + diff --git a/src/Common/Commands.ResourceManager.Profile.Test/Commands.ResourceManager.Profile.Test.csproj b/src/Common/Commands.ResourceManager.Profile.Test/Commands.ResourceManager.Profile.Test.csproj index a2007b8519c7..408f9e9557c0 100644 --- a/src/Common/Commands.ResourceManager.Profile.Test/Commands.ResourceManager.Profile.Test.csproj +++ b/src/Common/Commands.ResourceManager.Profile.Test/Commands.ResourceManager.Profile.Test.csproj @@ -194,10 +194,6 @@ {142d7b0b-388a-4ceb-a228-7f6d423c5c2e} Commands.ResourceManager.Profile - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - diff --git a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj index 17a57466968c..b9dd9c46ce90 100644 --- a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj +++ b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj @@ -142,7 +142,6 @@ - @@ -159,10 +158,6 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common - - {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} - Commands.ResourceManager.Common - diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Assert.ps1 b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Assert.ps1 new file mode 100644 index 000000000000..ae4a0c1b6553 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Assert.ps1 @@ -0,0 +1,383 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +###################### +# +# Validate that the given code block throws the given exception +# +# param [ScriptBlock] $script : The code to test +# param [string] $message : The text of the exception that should be thrown +####################### +function Assert-Throws +{ + param([ScriptBlock] $script, [string] $message) + try + { + &$script + } + catch + { + if ($message -ne "") + { + $actualMessage = $_.Exception.Message + Write-Output ("Caught exception: '$actualMessage'") + + if ($actualMessage -eq $message) + { + return $true; + } + else + { + throw "Expected exception not received: '$message' the actual message is '$actualMessage'"; + } + } + else + { + return $true; + } + } + + throw "No exception occured"; +} + +###################### +# +# Validate that the given code block throws the given exception +# +# param [ScriptBlock] $script : The code to test +# param [ScriptBlock] $compare : Predicate used to determine if the message meets criteria +####################### +function Assert-ThrowsContains +{ + param([ScriptBlock] $script, [string] $compare) + try + { + &$script + } + catch + { + if ($message -ne "") + { + $actualMessage = $_.Exception.Message + Write-Output ("Caught exception: '$actualMessage'") + if ($actualMessage.Contains($compare)) + { + return $true; + } + else + { + throw "Expected exception does not contain expected text '$compare', the actual message is '$actualMessage'"; + } + } + else + { + return $true; + } + } + + throw "No exception occured"; +} + +###################### +# +# Validate that the given code block throws the given exception +# +# param [ScriptBlock] $script : The code to test +# param [ScriptBlock] $compare: Predicate used to determine if the message meets the criteria (-like) +####################### +function Assert-ThrowsLike +{ + param([ScriptBlock] $script, [string] $compare) + try + { + &$script + } + catch + { + if ($message -ne "") + { + $actualMessage = $_.Exception.Message + Write-Output ("Caught exception: '$actualMessage'") + if ($actualMessage -like $compare) + { + return $true; + } + else + { + throw "Expected exception is not like the expected text '$compare', the actual message is '$actualMessage'"; + } + } + else + { + return $true; + } + } + + throw "No exception occured"; +} + +<# +.SYNOPSIS +Given a list of variable names, assert that all of them are defined +#> +function Assert-Env +{ + param([string[]] $vars) + $tmp = Get-Item env: + $env = @{} + $tmp | % { $env.Add($_.Key, $_.Value)} + $vars | % { Assert-True {$env.ContainsKey($_)} "Environment Variable $_ Is Required. Please set the value before runnign the test"} +} + +################### +# +# Verify that the given scriptblock returns true +# +# param [ScriptBlock] $script : The script to execute +# param [string] $message : The message to return if the given script does not return true +#################### +function Assert-True +{ + param([ScriptBlock] $script, [string] $message) + + if (!$message) + { + $message = "Assertion failed: " + $script + } + + $result = &$script + if (-not $result) + { + Write-Debug "Failure: $message" + throw $message + } + + return $true +} + +################### +# +# Verify that the given scriptblock returns false +# +# param [ScriptBlock] $script : The script to execute +# param [string] $message : The message to return if the given script does not return false +#################### +function Assert-False +{ + param([ScriptBlock] $script, [string] $message) + + if (!$message) + { + $message = "Assertion failed: " + $script + } + + $result = &$script + if ($result) + { + throw $message + } + + return $true +} + +################### +# +# Verify that the given scriptblock returns false +# +# param [ScriptBlock] $script : The script to execute +# param [string] $message : The message to return if the given script does not return false +#################### +function Assert-False +{ + param([ScriptBlock] $script, [string] $message) + + if (!$message) + { + $message = "Assertion failed: " + $script + } + + $result = &$script + if ($result) + { + throw $message + } + + return $true +} + +################### +# +# Verify that the given scriptblock does not return null +# +# param [object] $actual : The actual object +# param [string] $message : The message to return if the given script does not return true +#################### +function Assert-NotNull +{ + param([object] $actual, [string] $message) + + if (!$message) + { + $message = "Assertion failed because the object is null: " + $actual + } + + if ($actual -eq $null) + { + throw $message + } + + return $true +} + +###################### +# +# Assert that the given file exists +# +# param [string] $path : The path to the file to test +# param [string] $message: The text of the exception to throw if the file doesn't exist +###################### +function Assert-Exists +{ + param([string] $path, [string] $message) + return Assert-True {Test-Path $path} $message +} + +################### +# +# Verify that two given objects are equal +# +# param [object] $expected : The expected object +# param [object] $actual : The actual object +# param [string] $message : The message to return if the given objects are not equal +#################### +function Assert-AreEqual +{ + param([object] $expected, [object] $actual, [string] $message) + + if (!$message) + { + $message = "Assertion failed because expected '$expected' does not match actual '$actual'" + } + + if ($expected -ne $actual) + { + throw $message + } + + return $true +} + +################### +# +# Verify that two given arrays are equal +# +# param [array] $expected : The expected array +# param [array] $actual : The actual array +# param [string] $message : The message to return if the given arrays are not equal. +#################### +function Assert-AreEqualArray +{ + param([object] $expected, [object] $actual, [string] $message) + + if (!$message) + { + $message = "Assertion failed because expected '$expected' does not match actual '$actual'" + } + + $diff = Compare-Object $expected $actual -PassThru + + if ($diff -ne $null) + { + throw $message + } + + return $true +} + +################### +# +# Verify that two given objects have equal properties +# +# param [object] $expected : The expected object +# param [object] $actual : The actual object +# param [string] $message : The message to return if the given objects are not equal. +#################### +function Assert-AreEqualObjectProperties +{ + param([object] $expected, [object] $actual, [string] $message) + + $properties = $expected | Get-Member -MemberType "Property" | Select -ExpandProperty Name + $diff = Compare-Object $expected $actual -Property $properties + + if ($diff -ne $null) + { + if (!$message) + { + $message = "Assert failed because the objects don't match. Expected: " + $diff[0] + " Actual: " + $diff[1] + } + + throw $message + } + + return $true +} + +################### +# +# Verify that the given value is null +# +# param [object] $actual : The actual object +# param [string] $message : The message to return if the given object is not null +#################### +function Assert-Null +{ + param([object] $actual, [string] $message) + + if (!$message) + { + $message = "Assertion failed because the object is not null: " + $actual + } + + if ($actual -ne $null) + { + throw $message + } + + return $true +} + +################### +# +# Verify that two given objects are not equal +# +# param [object] $expected : The expected object +# param [object] $actual : The actual object +# param [string] $message : The message to return if the given objects are equal +#################### +function Assert-AreNotEqual +{ + param([object] $expected, [object] $actual, [string] $message) + + if (!$message) + { + $message = "Assertion failed because expected '$expected' does match actual '$actual'" + } + + if ($expected -eq $actual) + { + throw $message + } + + return $true +} \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj new file mode 100644 index 000000000000..e90b30e7332c --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj @@ -0,0 +1,192 @@ + + + + + + Debug + AnyCPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95} + Library + Properties + Microsoft.Azure.Commands.ScenarioTest + Microsoft.Azure.Commands.ScenarioTest.Common + v4.5 + 512 + ..\..\ + true + 3c43a8cf + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE;SIGN + true + MSSharedLibKey.snk + true + true + false + true + pdbonly + + + + ..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll + + + ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + False + ..\..\packages\Microsoft.Azure.Common.Authentication.1.1.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + + False + ..\..\packages\Microsoft.Azure.Management.Resources.2.18.7-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + ..\..\packages\Microsoft.Azure.Test.Framework.1.0.5715.36130-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + + ..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5715.36130-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + + False + ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + False + ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + ..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.3\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + True + + + False + ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + False + ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + True + + + ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + + ..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + + + False + ..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + ..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + + + False + C:\Program Files (x86)\Reference Assemblies\Microsoft\WindowsPowerShell\3.0\System.Management.Automation.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 + True + + + ..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll + True + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + + + + + + 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/Common/Commands.ScenarioTests.ResourceManager.Common/Common.ps1 b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Common.ps1 new file mode 100644 index 000000000000..8b46ac170973 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Common.ps1 @@ -0,0 +1,546 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +$excludedExtensions = @(".dll", ".zip", ".msi", ".exe") +################################### +# +# Retrievce the contents of a powershrell transcript, stripping headers and footers +# +# param [string] $path: The path to the transript file to read +################################### +function Get-Transcript +{ + param([string] $path) + return Get-Content $path | + Select-String -InputObject {$_} -Pattern "^Start Time\s*:.*" -NotMatch | + Select-String -InputObject {$_} -Pattern "^End Time\s*:.*" -NotMatch | + Select-String -InputObject {$_} -Pattern "^Machine\s*:.*" -NotMatch | + Select-String -InputObject {$_} -Pattern "^Username\s*:.*" -NotMatch | + Select-String -InputObject {$_} -Pattern "^Transcript started, output file is.*" -NotMatch +} + +######################## +# +# Get a random file name in the current directory +# +# param [string] $rootPath: The path of the directory to contain the random file (optional) +######################## +function Get-LogFile +{ + param([string] $rootPath = ".") + return [System.IO.Path]::Combine($rootPath, ([System.IO.Path]::GetRandomFileName())) +} + +################# +# +# Execute a test, no exception thrown means the test passes. Can also be used to compare test +# output to a baseline file, or to generate a baseline file +# +# param [scriptblock] $test: The test code to run +# param [string] $testScript: The path to the baseline file (optional) +# param [switch] $generate: Set if the baseline file should be generated, otherwise +# the baseline file would be used for comparison with test output +################## +function Run-Test +{ + param([scriptblock]$test, [string] $testName = $null, [string] $testScript = $null, [switch] $generate = $false) + Test-Setup + $transFile = $testName + ".log" + if ($testName -eq $null) + { + $transFile = Get-LogFile "." + } + if($testScript) + { + if ($generate) + { + Write-Log "[run-test]: generating script file $testScript" + $transFile = $testScript + } + else + { + Write-Log "[run-test]: writing output to $transFile, using validation script $testScript" + } + } + else + { + Write-Log "[run-test]: Running test without file comparison" + } + + $oldPref = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + #Start-Transcript -Path $transFile + $success = $false; + $ErrorActionPreference = $oldPref + try + { + &$test + $success = $true; + } + finally + { + Test-Cleanup + $oldPref = $ErrorActionPreference + $ErrorActionPreference = "SilentlyContinue" + #Stop-Transcript + $ErrorActionPreference = $oldPref + if ($testScript) + { + if ($success -and -not $generate) + { + $result = Compare-Object (Get-Transcript $testScript) (Get-Transcript $transFile) + if ($result -ne $null) + { + throw "[run-test]: Test Failed " + (Out-String -InputObject $result) + ", Transcript at $transFile" + } + + } + } + + if ($success) + { + Write-Log "[run-test]: Test Passed" + } + } + +} + +################## +# +# Format a string for proper output to host and transcript +# +# param [string] $message: The text to write +################## +function Write-Log +{ + [CmdletBinding()] + param( [Object] [Parameter(Position=0, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$false)] $obj = "") + PROCESS + { + $obj | Out-String | Write-Verbose + } +} + +function Check-SubscriptionMatch +{ + param([string] $baseSubscriptionName, [Microsoft.WindowsAzure.Commands.Utilities.Common.SubscriptionData] $checkedSubscription) + Write-Log ("[CheckSubscriptionMatch]: base subscription: '$baseSubscriptionName', validating '" + ($checkedSubscription.SubscriptionName)+ "'") + Format-Subscription $checkedSubscription | Write-Log + if ($baseSubscriptionName -ne $checkedSubscription.SubscriptionName) + { + throw ("[Check-SubscriptionMatch]: Subscription Match Failed '" + ($baseSubscriptionName) + "' != '" + ($checkedSubscription.SubscriptionName) + "'") + } + + Write-Log ("CheckSubscriptionMatch]: subscription check succeeded.") +} + + +########################## +# +# Return the fully qualified filename of a given file +# +# param [string] $path: The relative path to the file +# +########################## +function Get-FullName +{ + param([string] $path) + $pathObj = Get-Item $path + return ($pathObj.FullName) +} + +############################# +# +# PowerShell environment setup for running a test, save previous snvironment settings and +# enable verbose, debug, and warning streams +# +############################# +function Test-Setup +{ + $global:oldConfirmPreference = $global:ConfirmPreference + $global:oldDebugPreference = $global:DebugPreference + $global:oldErrorActionPreference = $global:ErrorActionPreference + $global:oldFormatEnumerationLimit = $global:FormatEnumerationLimit + $global:oldProgressPreference = $global:ProgressPreference + $global:oldVerbosePreference = $global:VerbosePreference + $global:oldWarningPreference = $global:WarningPreference + $global:oldWhatIfPreference = $global:WhatIfPreference + $global:ConfirmPreference = "None" + $global:DebugPreference = "Continue" + $global:ErrorActionPreference = "Stop" + $global:FormatEnumerationLimit = 10000 + $global:ProgressPreference = "SilentlyContinue" + $global:VerbosePreference = "Continue" + $global:WarningPreference = "Continue" + $global:WhatIfPreference = 0 +} + +############################# +# +# PowerShell environment cleanup for running a test, restore previous snvironment settings +# +############################# +function Test-Cleanup +{ + $global:ConfirmPreference = $global:oldConfirmPreference + $global:DebugPreference = $global:oldDebugPreference + $global:ErrorActionPreference = $global:oldErrorActionPreference + $global:FormatEnumerationLimit = $global:oldFormatEnumerationLimit + $global:ProgressPreference = $global:oldProgressPreference + $global:VerbosePreference = $global:oldVerbosePreference + $global:WarningPreference = $global:oldWarningPreference + $global:WhatIfPreference = $global:oldWhatIfPreference +} + +####################### +# +# Dump the contents of a directory to the output stream +# +# param [string] $rootPath: The path to the directory +# param [switch] $resurse : True if we should recurse directories +###################### +function Dump-Contents +{ + param([string] $rootPath = ".", [switch] $recurse = $false) + if (-not ((Test-Path $rootPath) -eq $true)) + { + throw "[dump-contents]: $rootPath does not exist" + } + + foreach ($item in Get-ChildItem $rootPath) + { + Write-Log + Write-Log "---------------------------" + Write-Log $item.Name + Write-Log "---------------------------" + Write-Log + if (!$item.PSIsContainer) + { + if (Test-BinaryFile $item) + { + Write-Log "---- binary data excluded ----" + } + else + { + Get-Content ($item.PSPath) + } + } + elseif ($recurse) + { + Dump-Contents ($item.PSPath) -recurse + } + } +} + +function Test-BinaryFile +{ + param ([System.IO.FileInfo] $file) + ($excludedExtensions | Where-Object -FilterScript {$_ -eq $file.Extension}) -ne $null +} + + +<# +.SYNOPSIS +Removes all current subscriptions. +#> +function Remove-AllSubscriptions +{ + Get-AzureSubscription | Remove-AzureSubscription -Force +} + +<# +.SYNOPSIS +Waits on the specified job with the given timeout. + +.PARAMETER scriptBlock +The script block to execute. + +.PARAMETER timeout +The maximum timeout for the script. +#> +function Wait-Function +{ + param([ScriptBlock] $scriptBlock, [object] $breakCondition, [int] $timeout) + + if ($timeout -eq 0) { $timeout = 60 * 5 } + $start = [DateTime]::Now + $current = [DateTime]::Now + $diff = $current - $start + + do + { + Start-Sleep -s 5 + $current = [DateTime]::Now + $diff = $current - $start + $result = &$scriptBlock + } + while(($result -ne $breakCondition) -and ($diff.TotalSeconds -lt $timeout)) + + if ($diff.TotalSeconds -ge $timeout) + { + Write-Warning "The script block '$scriptBlock' exceeded the timeout." + # End the processing so the test does not blow up + exit + } +} + + +<# +.SYNOPSIS +Waits for specified duration if not-mocked, otherwise skips wait. + +.PARAMETER timeout +Timeout in seconds +#> +function Wait-Seconds +{ + param([int] $timeout) + + [Microsoft.Azure.Test.TestUtilities]::Wait($timeout * 1000) +} + + +<# +.SYNOPSIS +Retires the specified job the given numer of times, waiting the given interval between tries + +.PARAMETER scriptBlock +The script block to execute. Must be a predicate (return true or false) + +.PARAMETER argument +Argument to pass to the script block + +.PARAMETER maxTries +The maximum number of times to retry + +.PARAMETER interval +The number of seconds to wait before retrying +#> +function Retry-Function +{ + param([ScriptBlock] $scriptBlock, [Object] $argument, [int] $maxTries, [int] $interval) + + if ($interval -eq 0) { $interval = 60 } + + $result = Invoke-Command -ScriptBlock $scriptBlock -ArgumentList $argument; + $tries = 1; + while(( $result -ne $true) -and ($tries -le $maxTries)) + { + Start-Sleep -s $interval + $result = Invoke-Command -ScriptBlock $scriptBlock -ArgumentList $argument; + $tries++; + } + + return $result; +} + +function getAssetName +{ + $stack = Get-PSCallStack + $testName = getTestName + + $assetName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetAssetName($testName, "onesdk") + + return $assetName +} + +<# +.SYNOPSIS +Gets the name of the test +#> +function getTestName +{ + $stack = Get-PSCallStack + $testName = $null + foreach ($frame in $stack) + { + if ($frame.Command.StartsWith("Test-", "CurrentCultureIgnoreCase")) + { + $testName = $frame.Command + } + } + + return $testName +} + +<# +.SYNOPSIS +Gets a variable setting from the recorded mock for a test + +.PARAMETER variableName +The name of the variable +#> +function getVariable +{ + param([string]$variableName) + $testName = getTestName + $result = $null + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Variables.ContainsKey($variableName)) + { + $result = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Variables[$variableName] + } + + return $result +} + +<# +.SYNOPSIS +Gets the subscription ID from the recorded mock for a test + +#> +function getSubscription +{ + return $(getVariable "SubscriptionId") +} + +<# +.SYNOPSIS +Gets the test mock execution mode (Playback, None, Record) + +#> +function getTestMode +{ + return $([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode) +} + +<# +.SYNOPSIS +Creates a PSCredential from a given useranme and clear text password + +.PARAMETER username +The user name +.PARAMETER password +The corresponding password in clear text +#> +function createTestCredential +{ + param([string]$username, [string]$password) + $secPasswd = ConvertTo-SecureString $password -AsPlainText -Force + return $(New-Object System.Management.Automation.PSCredential ($username, $secPasswd)) +} + +<# +.SYNOPSIS +Creates a PSCredential from a given connection string + +.PARAMETER connectionString +The connection string containing username and password information +#> +function getTestCredentialFromString +{ + param([string] $connectionString) + $parsedString = [Microsoft.Azure.Test.TestUtilities]::ParseConnectionString($connectionString) + if (-not ($parsedString.ContainsKey([Microsoft.Azure.Test.TestEnvironment]::UserIdKey) -or ((-not ($parsedString.ContainsKey([Microsoft.Azure.Test.TestEnvironment]::AADPasswordKey)))))) + { + throw "The connection string '$connectionString' must have a valid value, including username and password " +` + "in the following format: SubscriptionId=;UserName=;Password=" + } + return $(createTestCredential $parsedString[[Microsoft.Azure.Test.TestEnvironment]::UserIdKey] $parsedString[[Microsoft.Azure.Test.TestEnvironment]::AADPasswordKey]) +} + +<# +.SYNOPSIS +Gets a Subscription from a given connection string + +.PARAMETER connectionString +The connection string containing subscription information +#> +function getSubscriptionFromString +{ + param([string] $connectionString) + $parsedString = [Microsoft.Azure.Test.TestUtilities]::ParseConnectionString($connectionString) + if (-not ($parsedString.ContainsKey([Microsoft.Azure.Test.TestEnvironment]::SubscriptionIdKey))) + { + throw "The connection string '$connectionString' must have a valid value, including subscription " +` + "in the following format: SubscriptionId=;UserName=;Password=" + } + return $($parsedString[[Microsoft.Azure.Test.TestEnvironment]::SubscriptionIdKey]) +} +<# +.SYNOPSIS +Creates a PSCredential from the given test environment, using the environemnt variables for this process + +.PARAMETER testEnvironment +The test environment : either RDFE or CSM +#> +function getCredentialFromEnvironment +{ + param([string]$testEnvironment) + $credential = $null + $testMode = getTestMode + if ($testMode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecordMode]::Playback) + { + $environmentVariable = $null; + if ([System.string]::Equals($testEnvironment, "rdfe", [System.StringComparison]::OrdinalIgnoreCase)) + { + $environmentVariable = [Microsoft.Azure.Test.RDFETestEnvironmentFactory]::TestOrgIdAuthenticationKey + } + else + { + $environmentVariable = [Microsoft.Azure.Test.CSMTestEnvironmentFactory]::TestCSMOrgIdConnectionStringKey + } + + $environmentValue = [System.Environment]::GetEnvironmentVariable($environmentVariable) + if ([System.string]::IsNullOrEmpty($environmentValue)) + { + throw "The environment variable '$environmentVariable' must have a valid value, including username and password " +` + "in the following format: $environmentVariable=SubscriptionId=;UserName=;Password=" + } + + $credential = $(getTestCredentialFromString $environmentValue) + } + + return $credential +} + +<# +.SYNOPSIS +Creates a PSCredential from the given test environment, using the environemnt variables for this process + +.PARAMETER testEnvironment +The test environment : either RDFE or CSM +#> +function getSubscriptionFromEnvironment +{ + param([string]$testEnvironment) + $subscription = $null + $testMode = getTestMode + if ($testMode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecordMode]::Playback) + { + $environmentVariable = $null; + if ([System.string]::Equals($testEnvironment, "rdfe", [System.StringComparison]::OrdinalIgnoreCase)) + { + $environmentVariable = [Microsoft.Azure.Test.RDFETestEnvironmentFactory]::TestOrgIdAuthenticationKey + } + else + { + $environmentVariable = [Microsoft.Azure.Test.CSMTestEnvironmentFactory]::TestCSMOrgIdConnectionStringKey + } + + $environmentValue = [System.Environment]::GetEnvironmentVariable($environmentVariable) + if ([System.string]::IsNullOrEmpty($environmentValue)) + { + throw "The environment variable '$environmentVariable' must have a valid value, including subscription id" +` + "in the following format: $environmentVariable=SubscriptionId=;UserName=;Password=" + } + + $subscription = $(getSubscriptionFromString $environmentValue) + } + else + { + $subscription = $(getSubscription) + } + + return $subscription +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Constants.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Constants.cs new file mode 100644 index 000000000000..c088a5021872 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Constants.cs @@ -0,0 +1,91 @@ + +// ---------------------------------------------------------------------------------- +// +// 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.ScenarioTest +{ + public class Category + { + // Service + public const string Service = "Service"; + + public const string All = "All"; + + public const string Automation = "Automation"; + + public const string ServiceBus = "ServiceBus"; + + public const string CloudService = "CloudService"; + + public const string Management = "Management"; + + public const string MediaServices = "MediaServices"; + + public const string Websites = "Websites"; + + public const string Storage = "Storage"; + + public const string Store = "Store"; + + public const string Sql = "Sql"; + + public const string ServiceManagement = "ServiceManagement"; + + public const string Resources = "Resources"; + + public const string Tags = "Tags"; + + public const string TrafficManager = "TrafficManager"; + + public const string ManagedCache = "ManagedCache"; + + public const string Scheduler = "Scheduler"; + + public const string KeyVault = "KeyVault"; + + public const string Network = "Network"; + + // Owners + public const string OneSDK = "OneSDK"; + + // Acceptance type + public const string AcceptanceType = "AcceptanceType"; + + public const string CIT = "CIT"; + + public const string BVT = "BVT"; + + public const string CheckIn = "CheckIn"; + + // Run Type + public const string RunType = "RunType"; + public const string LiveOnly = "LiveOnly"; + //Uncomment when we need to tag on only run under mock + //public const string MockedOnly = "MockedOnly"; + + // Environment + public const string Environment = "Environment"; + + public const string WAPack = "WAPack"; + } + + public class Variables + { + public const string SubscriptionId = "SubscriptionId"; + + public const string Username = "Username"; + + public const string Tenantd = "Tenantd"; + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs new file mode 100644 index 000000000000..03e16d6c5363 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -0,0 +1,320 @@ +// ---------------------------------------------------------------------------------- +// +// 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; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Test; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Diagnostics; +using System.IO; +using System.Management.Automation; +using System.Security.Cryptography.X509Certificates; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public class EnvironmentSetupHelper + { + private static string testEnvironmentName = "__test-environment"; + + private static string testSubscriptionName = "__test-subscriptions"; + + private AzureSubscription testSubscription; + + private AzureAccount testAccount; + + private const string PackageDirectoryFromCommon = @"..\..\..\..\Package\Debug"; + private const string PackageDirectory = @"..\..\..\..\..\Package\Debug"; + + protected List modules; + + protected ProfileClient ProfileClient { get; set; } + + public EnvironmentSetupHelper() + { + var datastore = new MemoryDataStore(); + AzureSession.DataStore = datastore; + var profile = new AzureSMProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile)); + AzureSMCmdlet.CurrentProfile = profile; + AzureSession.DataStore = datastore; + ProfileClient = new ProfileClient(profile); + + // Ignore SSL errors + System.Net.ServicePointManager.ServerCertificateValidationCallback += (se, cert, chain, sslerror) => true; + + // Set RunningMocked + if (HttpMockServer.GetCurrentMode() == HttpRecorderMode.Playback) + { + TestMockSupport.RunningMocked = true; + } + else + { + TestMockSupport.RunningMocked = false; + } + } + + /// + /// Loads DummyManagementClientHelper with clients and throws exception if any client is missing. + /// + /// + public void SetupManagementClients(params object[] initializedManagementClients) + { + AzureSession.ClientFactory = new MockClientFactory(initializedManagementClients); + } + + /// + /// Loads DummyManagementClientHelper with clients and sets it up to create missing clients dynamically. + /// + /// + public void SetupSomeOfManagementClients(params object[] initializedManagementClients) + { + AzureSession.ClientFactory = new MockClientFactory(initializedManagementClients, false); + } + + public void SetupEnvironment(AzureModule mode) + { + SetupAzureEnvironmentFromEnvironmentVariables(mode); + + ProfileClient.Profile.Save(); + } + + private void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) + { + TestEnvironment rdfeEnvironment = new RDFETestEnvironmentFactory().GetTestEnvironment(); + TestEnvironment csmEnvironment = new CSMTestEnvironmentFactory().GetTestEnvironment(); + TestEnvironment currentEnvironment = (mode == AzureModule.AzureResourceManager ? csmEnvironment : rdfeEnvironment); + + if (currentEnvironment.UserName == null) + { + currentEnvironment.UserName = "fakeuser@microsoft.com"; + } + + SetAuthenticationFactory(mode, rdfeEnvironment, csmEnvironment); + + AzureEnvironment environment = new AzureEnvironment { Name = testEnvironmentName }; + + Debug.Assert(currentEnvironment != null); + environment.Endpoints[AzureEnvironment.Endpoint.ActiveDirectory] = currentEnvironment.Endpoints.AADAuthUri.AbsoluteUri; + environment.Endpoints[AzureEnvironment.Endpoint.Gallery] = currentEnvironment.Endpoints.GalleryUri.AbsoluteUri; + + if (csmEnvironment != null) + { + environment.Endpoints[AzureEnvironment.Endpoint.ResourceManager] = csmEnvironment.BaseUri.AbsoluteUri; + } + + if (rdfeEnvironment != null) + { + environment.Endpoints[AzureEnvironment.Endpoint.ServiceManagement] = rdfeEnvironment.BaseUri.AbsoluteUri; + } + + if (!ProfileClient.Profile.Environments.ContainsKey(testEnvironmentName)) + { + ProfileClient.AddOrSetEnvironment(environment); + } + + if (currentEnvironment.SubscriptionId != null) + { + testSubscription = new AzureSubscription() + { + Id = new Guid(currentEnvironment.SubscriptionId), + Name = testSubscriptionName, + Environment = testEnvironmentName, + Account = currentEnvironment.UserName, + Properties = new Dictionary + { + {AzureSubscription.Property.Default, "True"}, + { + AzureSubscription.Property.StorageAccount, + Environment.GetEnvironmentVariable("AZURE_STORAGE_ACCOUNT") + }, + } + }; + + testAccount = new AzureAccount() + { + Id = currentEnvironment.UserName, + Type = AzureAccount.AccountType.User, + Properties = new Dictionary + { + {AzureAccount.Property.Subscriptions, currentEnvironment.SubscriptionId}, + } + }; + + ProfileClient.Profile.Subscriptions[testSubscription.Id] = testSubscription; + ProfileClient.Profile.Accounts[testAccount.Id] = testAccount; + ProfileClient.SetSubscriptionAsDefault(testSubscription.Name, testSubscription.Account); + } + } + + private void SetAuthenticationFactory(AzureModule mode, TestEnvironment rdfeEnvironment, TestEnvironment csmEnvironment) + { + string jwtToken = null; + X509Certificate2 certificate = null; + TestEnvironment currentEnvironment = (mode == AzureModule.AzureResourceManager ? csmEnvironment : rdfeEnvironment); + + if (mode == AzureModule.AzureServiceManagement) + { + if (rdfeEnvironment.Credentials is TokenCloudCredentials) + { + jwtToken = ((TokenCloudCredentials)rdfeEnvironment.Credentials).Token; + } + if (rdfeEnvironment.Credentials is CertificateCloudCredentials) + { + certificate = ((CertificateCloudCredentials)rdfeEnvironment.Credentials).ManagementCertificate; + } + } + else + { + if (csmEnvironment.Credentials is TokenCloudCredentials) + { + jwtToken = ((TokenCloudCredentials)csmEnvironment.Credentials).Token; + } + if (csmEnvironment.Credentials is CertificateCloudCredentials) + { + certificate = ((CertificateCloudCredentials)csmEnvironment.Credentials).ManagementCertificate; + } + } + + + if (jwtToken != null) + { + AzureSession.AuthenticationFactory = new MockTokenAuthenticationFactory(currentEnvironment.UserName, + jwtToken); + } + else if (certificate != null) + { + AzureSession.AuthenticationFactory = new MockCertificateAuthenticationFactory(currentEnvironment.UserName, + certificate); + } + } + + public void SetupModules(AzureModule mode, params string[] modules) + { + this.modules = new List(); + if (mode == AzureModule.AzureProfile) + { + this.modules.Add(Path.Combine(PackageDirectory, @"ServiceManagement\Azure\Azure.psd1")); + this.modules.Add(Path.Combine(PackageDirectory, @"ResourceManager\AzureResourceManager\AzureResourceManager.psd1")); + } + else if (mode == AzureModule.AzureServiceManagement) + { + this.modules.Add(Path.Combine(PackageDirectory, @"ServiceManagement\Azure\Azure.psd1")); + } + else if (mode == AzureModule.AzureResourceManager) + { + this.modules.Add(Path.Combine(PackageDirectory, @"ResourceManager\AzureResourceManager\AzureResourceManager.psd1")); + } + else + { + throw new ArgumentException("Unknown command type for testing"); + } + this.modules.Add("Assert.ps1"); + this.modules.Add("Common.ps1"); + this.modules.AddRange(modules); + } + + public void SetupModulesFromCommon(AzureModule mode, params string[] modules) + { + this.modules = new List(); + if (mode == AzureModule.AzureProfile) + { + this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ServiceManagement\Azure\Azure.psd1")); + this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureResourceManager.psd1")); + } + else if (mode == AzureModule.AzureServiceManagement) + { + this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ServiceManagement\Azure\Azure.psd1")); + } + else if (mode == AzureModule.AzureResourceManager) + { + this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureResourceManager.psd1")); + } + else + { + throw new ArgumentException("Unknown command type for testing"); + } + this.modules.Add("Assert.ps1"); + this.modules.Add("Common.ps1"); + this.modules.AddRange(modules); + } + + public void SetupModules(params string[] modules) + { + this.modules = new List(); + this.modules.Add("Assert.ps1"); + this.modules.Add("Common.ps1"); + this.modules.AddRange(modules); + } + + public virtual Collection RunPowerShellTest(params string[] scripts) + { + using (var powershell = System.Management.Automation.PowerShell.Create()) + { + SetupPowerShellModules(powershell); + + Collection output = null; + for (int i = 0; i < scripts.Length; ++i) + { + Console.WriteLine(scripts[i]); + powershell.AddScript(scripts[i]); + } + try + { + powershell.Runspace.Events.Subscribers.Clear(); + output = powershell.Invoke(); + + if (powershell.Streams.Error.Count > 0) + { + throw new RuntimeException( + "Test failed due to a non-empty error stream, check the error stream in the test log for more details."); + } + + return output; + } + catch (Exception psException) + { + powershell.LogPowerShellException(psException); + throw; + } + finally + { + powershell.LogPowerShellResults(output); + powershell.Streams.Error.Clear(); + } + } + } + + private void SetupPowerShellModules(System.Management.Automation.PowerShell powershell) + { + powershell.AddScript(string.Format("cd \"{0}\"", Environment.CurrentDirectory)); + + foreach (string moduleName in modules) + { + powershell.AddScript(string.Format("Import-Module \".\\{0}\"", moduleName)); + } + + powershell.AddScript("$VerbosePreference='Continue'"); + powershell.AddScript("$DebugPreference='Continue'"); + powershell.AddScript("$ErrorActionPreference='Stop'"); + powershell.AddScript("Write-Debug \"AZURE_TEST_MODE = $($env:AZURE_TEST_MODE)\""); + powershell.AddScript("Write-Debug \"TEST_HTTPMOCK_OUTPUT = $($env:TEST_HTTPMOCK_OUTPUT)\""); + } + + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/MSSharedLibKey.snk b/src/Common/Commands.ScenarioTests.ResourceManager.Common/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 authTokenSetter) + { + authTokenSetter("Bearer", AccessToken); + } + + public string AccessToken { get; set; } + public string UserId { get; set; } + public LoginType LoginType { get; set; } + + public string TenantId + { + get { return string.Empty; } + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockAccessTokenProvider.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockAccessTokenProvider.cs new file mode 100644 index 000000000000..8b14461bc714 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockAccessTokenProvider.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Security; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; +using Microsoft.Azure.Common.Authentication; + +namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Common +{ + public class MockAccessTokenProvider : ITokenProvider + { + private readonly IAccessToken accessToken; + + public MockAccessTokenProvider(string token) + : this(token, "user@live.com") + { } + + public MockAccessTokenProvider(string token, string userId) + { + this.accessToken = new MockAccessToken() + { + AccessToken = token, + UserId = userId + }; + } + + public IAccessToken GetAccessToken(AdalConfiguration config, ShowDialog promptBehavior, string userId, SecureString password, + AzureAccount.AccountType credentialType) + { + return this.accessToken; + } + } +} \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCertificateAuthenticationFactory.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCertificateAuthenticationFactory.cs new file mode 100644 index 000000000000..c7c09d774760 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCertificateAuthenticationFactory.cs @@ -0,0 +1,66 @@ +// ---------------------------------------------------------------------------------- +// +// 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; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using System.Security; +using System.Security.Cryptography.X509Certificates; + +namespace Microsoft.WindowsAzure.Commands.Common.Test.Mocks +{ + public class MockCertificateAuthenticationFactory : IAuthenticationFactory + { + public X509Certificate2 Certificate { get; set; } + + public MockCertificateAuthenticationFactory() + { + Certificate = new X509Certificate2(); + } + + public MockCertificateAuthenticationFactory(string userId, X509Certificate2 certificate) + { + Certificate = certificate; + } + + public IAccessToken Authenticate(AzureAccount account, AzureEnvironment environment, string tenant, SecureString password, ShowDialog promptBehavior, + AzureEnvironment.Endpoint resourceId = AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId) + { + if (account.Id == null) + { + account.Id = "test"; + } + + var token = new MockAccessToken + { + UserId = account.Id, + LoginType = LoginType.OrgId, + AccessToken = "123" + }; + + return token; + } + + public SubscriptionCloudCredentials GetSubscriptionCloudCredentials(AzureContext context) + { + return new CertificateCloudCredentials(context.Subscription.Id.ToString(), Certificate); + } + + + public Microsoft.Rest.ServiceClientCredentials GetServiceClientCredentials(AzureContext context) + { + throw new System.NotImplementedException(); + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs new file mode 100644 index 000000000000..b8d315208022 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs @@ -0,0 +1,239 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading; +using System.Threading.Tasks; +using Hyak.Common; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Azure.Common; +using Microsoft.Azure.Common.Authentication.Factories; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure; +using System.IO; + +namespace Microsoft.WindowsAzure.Commands.Common.Test.Mocks +{ + public class MockClientFactory : IClientFactory + { + private readonly bool throwWhenNotAvailable; + + public bool MoqClients { get; set; } + + public List ManagementClients { get; private set; } + + public MockClientFactory(IEnumerable clients, bool throwIfClientNotSpecified = true) + { + UniqueUserAgents = new HashSet(); + ManagementClients = clients.ToList(); + throwWhenNotAvailable = throwIfClientNotSpecified; + } + + public TClient CreateClient(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient + { + Debug.Assert(context != null); + + SubscriptionCloudCredentials creds = AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(context); + TClient client = CreateCustomClient(creds, context.Environment.GetEndpointAsUri(endpoint)); + + return client; + } + + public TClient CreateClient(AzureSMProfile profile, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient + { + return CreateClient(profile, profile.DefaultContext.Subscription, endpoint); + } + + public TClient CreateClient(AzureSMProfile profile, AzureSubscription subscription, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient + { + if (subscription == null) + { + throw new ArgumentException(Commands.Common.Properties.Resources.InvalidDefaultSubscription); + } + + if (profile == null) + { + profile = new AzureSMProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile)); + } + + SubscriptionCloudCredentials creds = new TokenCloudCredentials(subscription.Id.ToString(), "fake_token"); + if (HttpMockServer.GetCurrentMode() != HttpRecorderMode.Playback) + { + ProfileClient profileClient = new ProfileClient(profile); + AzureContext context = new AzureContext( + subscription, + profileClient.GetAccount(subscription.Account), + profileClient.GetEnvironmentOrDefault(subscription.Environment) + ); + + creds = AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(context); + } + + Uri endpointUri = profile.Environments[subscription.Environment].GetEndpointAsUri(endpoint); + return CreateCustomClient(creds, endpointUri); + } + + public TClient CreateCustomClient(params object[] parameters) where TClient : ServiceClient + { + TClient client = ManagementClients.FirstOrDefault(o => o is TClient) as TClient; + if (client == null) + { + if (throwWhenNotAvailable) + { + throw new ArgumentException( + string.Format("TestManagementClientHelper class wasn't initialized with the {0} client.", + typeof (TClient).Name)); + } + else + { + var realClientFactory = new ClientFactory(); + var realClient = realClientFactory.CreateCustomClient(parameters); + var newRealClient = realClient.WithHandler(HttpMockServer.CreateInstance()); + + realClient.Dispose(); + return newRealClient; + } + } + else + { + if (!MoqClients) + { + // Use the WithHandler method to create an extra reference to the http client + // this will prevent the httpClient from being disposed in a long-running test using + // the same client for multiple cmdlets + client = client.WithHandler(new PassThroughDelegatingHandler()); + } + } + + return client; + } + + public HttpClient CreateHttpClient(string endpoint, ICredentials credentials) + { + return CreateHttpClient(endpoint, ClientFactory.CreateHttpClientHandler(endpoint, credentials)); + } + + public HttpClient CreateHttpClient(string serviceUrl, HttpMessageHandler effectiveHandler) + { + if (serviceUrl == null) + { + throw new ArgumentNullException("serviceUrl"); + } + if (effectiveHandler == null) + { + throw new ArgumentNullException("effectiveHandler"); + } + var mockHandler = HttpMockServer.CreateInstance(); + mockHandler.InnerHandler = effectiveHandler; + + HttpClient client = new HttpClient(mockHandler) + { + BaseAddress = new Uri(serviceUrl), + MaxResponseContentBufferSize = 30 * 1024 * 1024 + }; + + client.DefaultRequestHeaders.Accept.Clear(); + + return client; + } + + public void AddAction(IClientAction action) + { + // Do nothing + } + + public void RemoveAction(Type actionType) + { + // Do nothing + } + + public void AddUserAgent(string productName, string productVersion) + { + throw new NotImplementedException(); + } + + public void AddUserAgent(string productName) + { + throw new NotImplementedException(); + } + + public HashSet UniqueUserAgents { get; set; } + + /// + /// This class exists to allow adding an additional reference to the httpClient to prevent the client + /// from being disposed. Should not be used execpt in this mocked context. + /// + class PassThroughDelegatingHandler : DelegatingHandler + { + protected override Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + { + return base.SendAsync(request, cancellationToken); + } + } + + public TClient CreateArmClient(AzureContext context, AzureEnvironment.Endpoint endpoint) where TClient : Rest.ServiceClient + { + Debug.Assert(context != null); + var credentials = AzureSession.AuthenticationFactory.GetServiceClientCredentials(context); + var client = CreateCustomArmClient(credentials, context.Environment.GetEndpointAsUri(endpoint), + context.Subscription.Id); + return client; + + } + + public TClient CreateCustomArmClient(params object[] parameters) where TClient : Rest.ServiceClient + { + TClient client = ManagementClients.FirstOrDefault(o => o is TClient) as TClient; + if (client == null) + { + if (throwWhenNotAvailable) + { + throw new ArgumentException( + string.Format("TestManagementClientHelper class wasn't initialized with the {0} client.", + typeof (TClient).Name)); + } + else + { + var realClientFactory = new ClientFactory(); + var newParameters = new object[parameters.Length + 1]; + Array.Copy(parameters, 0, newParameters, 1, parameters.Length); + newParameters[0] = HttpMockServer.CreateInstance(); + var realClient = realClientFactory.CreateCustomArmClient(newParameters); + return realClient; + } + } + + return client; + } + + List IClientFactory.UserAgents + { + get + { + return this.UniqueUserAgents.ToList(); + } + set + { + value.ForEach((v) => this.UniqueUserAgents.Add(v)); + } + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCommandRuntime.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCommandRuntime.cs new file mode 100644 index 000000000000..b3e8da8817d2 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockCommandRuntime.cs @@ -0,0 +1,155 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Diagnostics.CodeAnalysis; +using System.Management.Automation; + +namespace Microsoft.WindowsAzure.Commands.Common.Test.Mocks +{ + public class MockCommandRuntime : ICommandRuntime + { + public List ErrorStream = new List(); + public List OutputPipeline = new List(); + public List WarningStream = new List(); + public List VerboseStream = new List(); + public List DebugStream = new List(); + + public override string ToString() + { + return "MockCommand"; + } + + [SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations", + Justification = "Tests should not access this property")] + public PSTransactionContext CurrentPSTransaction + { + get { throw new System.NotImplementedException(); } + } + + [SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations", + Justification = "Tests should not access this property")] + public System.Management.Automation.Host.PSHost Host + { + get { throw new System.NotImplementedException(); } + } + + public bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll) + { + return true; + } + + public bool ShouldContinue(string query, string caption) + { + return true; + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption, out ShouldProcessReason shouldProcessReason) + { + throw new System.NotImplementedException(); + } + + public bool ShouldProcess(string verboseDescription, string verboseWarning, string caption) + { + return true; + } + + public bool ShouldProcess(string target, string action) + { + return true; + } + + public bool ShouldProcess(string target) + { + return true; + } + + public void ThrowTerminatingError(ErrorRecord errorRecord) + { + throw new System.NotImplementedException(); + } + + public bool TransactionAvailable() + { + throw new System.NotImplementedException(); + } + + public void WriteCommandDetail(string text) + { + throw new System.NotImplementedException(); + } + + public void WriteDebug(string text) + { + DebugStream.Add(text); + } + + public void WriteError(ErrorRecord errorRecord) + { + ErrorStream.Add(errorRecord); + } + + public void WriteObject(object sendToPipeline, bool enumerateCollection) + { + System.Collections.IEnumerable enumerable = LanguagePrimitives.GetEnumerable(sendToPipeline); + if (enumerable != null && enumerateCollection) + { + foreach (object o in enumerable) + { + OutputPipeline.Add(o); + } + } + else + { + OutputPipeline.Add(sendToPipeline); + } + } + + public void WriteObject(object sendToPipeline) + { + OutputPipeline.Add(sendToPipeline); + } + + public void WriteProgress(long sourceId, ProgressRecord progressRecord) + { + // Do nothing + } + + public void WriteProgress(ProgressRecord progressRecord) + { + // Do nothing + } + + public void WriteVerbose(string text) + { + VerboseStream.Add(text); + } + + public void WriteWarning(string text) + { + this.WarningStream.Add(text); + } + + /// + /// Clears all command runtime pipelines. + /// + public void ResetPipelines() + { + ErrorStream.Clear(); + OutputPipeline.Clear(); + WarningStream.Clear(); + VerboseStream.Clear(); + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockTokenAuthenticationFactory.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockTokenAuthenticationFactory.cs new file mode 100644 index 000000000000..da7012921bfe --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockTokenAuthenticationFactory.cs @@ -0,0 +1,93 @@ +// ---------------------------------------------------------------------------------- +// +// 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; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Rest; +using System; +using System.Security; + +namespace Microsoft.WindowsAzure.Commands.Common.Test.Mocks +{ + public class MockTokenAuthenticationFactory : IAuthenticationFactory + { + public IAccessToken Token { get; set; } + + public Func TokenProvider { get; set; } + + public MockTokenAuthenticationFactory() + { + Token = new MockAccessToken + { + UserId = "Test", + LoginType = LoginType.OrgId, + AccessToken = "abc" + }; + + TokenProvider = (account, environment, tenant) => Token = new MockAccessToken + { + UserId = account.Id, + LoginType = LoginType.OrgId, + AccessToken = Token.AccessToken + }; + } + + public MockTokenAuthenticationFactory(string userId, string accessToken) + { + Token = new MockAccessToken + { + UserId = userId, + LoginType = LoginType.OrgId, + AccessToken = accessToken + }; + + TokenProvider = ((account, environment, tenant) => Token); + } + + public IAccessToken Authenticate(AzureAccount account, AzureEnvironment environment, string tenant, SecureString password, ShowDialog promptBehavior, + AzureEnvironment.Endpoint resourceId = AzureEnvironment.Endpoint.ActiveDirectoryServiceEndpointResourceId) + { + if (account.Id == null) + { + account.Id = "test"; + } + + if (TokenProvider == null) + { + return new MockAccessToken() + { + AccessToken = account.Id, + LoginType = LoginType.OrgId, + UserId = account.Id + }; + } + else + { + return TokenProvider(account, environment, tenant); + } + } + + public SubscriptionCloudCredentials GetSubscriptionCloudCredentials(AzureContext context) + { + return new AccessTokenCredential(context.Subscription.Id, Token); + } + + + public Microsoft.Rest.ServiceClientCredentials GetServiceClientCredentials(AzureContext context) + { + return new Microsoft.Rest.TokenCredentials(Token.AccessToken); + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/PSCmdletExtensions.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/PSCmdletExtensions.cs new file mode 100644 index 000000000000..90623209d3d9 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/PSCmdletExtensions.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Diagnostics; +using System.Management.Automation; +using System.Reflection; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public static class PSCmdletExtensions + { + private static MethodInfo GetProtectedMethod(string name) + { + MethodInfo m = typeof(PSCmdlet).GetMethod( + name, + BindingFlags.Instance | BindingFlags.NonPublic, + Type.DefaultBinder, + new Type[] { }, + null); + + return m; + } + + public static void ExecuteCmdlet(this PSCmdlet cmdlet) + { + try + { + GetProtectedMethod("ProcessRecord").Invoke(cmdlet, new object[] { }); + } + catch (TargetInvocationException e) + { + throw e.InnerException; + } + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/PermissiveRecordMatcher.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/PermissiveRecordMatcher.cs new file mode 100644 index 000000000000..b8add57ae494 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/PermissiveRecordMatcher.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Text; +using Microsoft.Azure.Test.HttpRecorder; +using Xunit; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public class PermissiveRecordMatcher : IRecordMatcher + { + public string GetMatchingKey(System.Net.Http.HttpRequestMessage request) + { + var path = request.RequestUri.PathAndQuery; + if (path.Contains("?&")) + { + path = path.Replace("?&", "?"); + } + + var encodedPath = Convert.ToBase64String(Encoding.UTF8.GetBytes(path)); + return string.Format("{0} {1}", request.Method, encodedPath); + } + + public string GetMatchingKey(RecordEntry recordEntry) + { + var encodedPath = recordEntry.EncodedRequestUri; + if (recordEntry.RequestUri.Contains("?&")) + { + var updatedPath = recordEntry.RequestUri.Replace("?&", "?"); + encodedPath = Convert.ToBase64String(Encoding.UTF8.GetBytes(updatedPath)); + } + + return string.Format("{0} {1}", recordEntry.RequestMethod, encodedPath); + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/PowerShellExtensions.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/PowerShellExtensions.cs new file mode 100644 index 000000000000..13250e4c9b24 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/PowerShellExtensions.cs @@ -0,0 +1,219 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.ObjectModel; +using System.Management.Automation; +using System.Management.Automation.Runspaces; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public static class PowerShellExtensions + { + public static string PowerShellEnvironmentFormat = "Set-Item env:{0} \"{1}\""; + public static string PowerShellVariableFormat = "${0}={1}"; + public static string CredentialImportFormat = "Import-AzurePublishSettingsFile '{0}'"; + + /// + /// Gets a powershell variable from the current session and converts it back to it's original type. + /// + /// The powershell object original type + /// The PowerShell instance + /// The variable name + /// The variable object + public static T GetPowerShellVariable(this System.Management.Automation.PowerShell powershell, string name) + { + object obj = powershell.Runspace.SessionStateProxy.GetVariable(name); + + if (obj is PSObject) + { + return (T)(obj as PSObject).BaseObject; + } + else + { + return (T)obj; + } + } + + /// + /// Gets a powershell enumerable collection from the current session and convernts it back to it's original type. + /// + /// The powershell object original type + /// The PowerShell instance + /// The variable name + /// The collection in list + public static List GetPowerShellCollection(this System.Management.Automation.PowerShell powershell, string name) + { + List result = new List(); + + try + { + object[] objects = (object[])powershell.Runspace.SessionStateProxy.GetVariable(name); + + foreach (object item in objects) + { + if (item is PSObject) + { + result.Add((T)(item as PSObject).BaseObject); + } + else + { + result.Add((T)item); + } + } + } + catch (Exception) { /* Do nothing */ } + + return result; + } + + /// + /// Sets a new PSVariable to the current scope. + /// + /// The PowerShell instance + /// The variable name + /// The variable value + public static void SetVariable(this System.Management.Automation.PowerShell powershell, string name, object value) + { + powershell.Runspace.SessionStateProxy.SetVariable(name, value); + } + + /// + /// Logs a PowerShell exception thrown from PowerShell.Invoke, parsing the inner + /// PowerShell error record if available + /// + /// The exception to parse + public static void LogPowerShellException(this System.Management.Automation.PowerShell powershell, Exception runtimeException) + { + Console.WriteLine("Caught Exception: {0}\n", runtimeException); + Console.WriteLine("Message: {0}\n", runtimeException.Message); + IContainsErrorRecord recordContainer = runtimeException as IContainsErrorRecord; + if (recordContainer != null) + { + ErrorRecord record = recordContainer.ErrorRecord; + Console.WriteLine("PowerShell Error Record: {0}\nException:{1}\nDetails:{2}\nScript Stack Trace: {3}\n: Target: {4}\n", record, record.Exception, record.ErrorDetails, record.ScriptStackTrace, record.TargetObject); + } + + if (runtimeException.InnerException != null) + { + powershell.LogPowerShellException(runtimeException.InnerException); + } + } + + /// + /// Log the PowerShell Streams from a PowerShell invocation + /// + /// The PowerShell instance to log + public static void LogPowerShellResults(this System.Management.Automation.PowerShell powershell) + { + powershell.LogPowerShellResults(null); + } + + /// + /// Log the PowerShell Streams from a PowerShell invocation + /// + /// The PowerShell instance to log + public static void LogPowerShellResults(this System.Management.Automation.PowerShell powershell, Collection output) + { + if (output != null) + { + LogPowerShellStream(output, "OUTPUT"); + } + if (powershell.Commands != null && powershell.Commands.Commands != null && + powershell.Commands.Commands.Count > 0) + { + Console.WriteLine("================== COMMANDS =======================\n"); + foreach (Command command in powershell.Commands.Commands) + { + Console.WriteLine("{0}\n", command.CommandText); + } + + Console.WriteLine("===================================================\n"); + } + + LogPowerShellStream(powershell.Streams.Debug, "DEBUG"); + LogPowerShellStream(powershell.Streams.Error, "ERROR"); + LogPowerShellStream(powershell.Streams.Progress, "PROGRESS"); + LogPowerShellStream(powershell.Streams.Verbose, "VERBOSE"); + LogPowerShellStream(powershell.Streams.Warning, "WARNING"); + } + + /// + /// Add an environment variable to the PowerShell instance + /// + /// The powershell instance to alter + /// The variable name + /// The variable value + public static void AddEnvironmentVariable(this System.Management.Automation.PowerShell powerShell, string variableKey, string variableValue) + { + powerShell.AddScript(string.Format(PowerShellEnvironmentFormat, variableKey, variableValue)); + } + + /// + /// Add an environment variable to the PowerShell instance + /// + /// The powershell instance to alter + /// The variable name + /// The variable value + public static void AddPowerShellVariable(this System.Management.Automation.PowerShell powerShell, string variableKey, string variableValue) + { + powerShell.AddScript(string.Format(PowerShellVariableFormat, variableKey, variableValue)); + } + /// + /// Import credentials into PowerShell + /// + /// The PowerShell instance to alter + /// The fully qualified path top the credentials + public static void ImportCredentials(this System.Management.Automation.PowerShell powerShell, string credentialPath) + { + powerShell.AddScript(string.Format(CredentialImportFormat, credentialPath)); + } + + /// + /// Remove all credentials for the current user + /// + /// The PowerShell instance to use for removing credentials + public static void RemoveCredentials(this System.Management.Automation.PowerShell powerShell) + { + powerShell.AddScript("try {$sub = Get-AzureSubscription | Remove-AzureSubscription -Force} catch {}"); + } + + /// + /// Log a single PowerShell stream, using the given name + /// + /// The type of the internal data record (different for every stream) + /// The stream to log + /// The name of the stream to print in the log + private static void LogPowerShellStream(ICollection stream, string name) + { + if (stream != null && stream.Count > 0) + { + + Console.WriteLine("---------------------------------------------------------------\n"); + Console.WriteLine("{0} STREAM\n", name); + Console.WriteLine("---------------------------------------------------------------\n"); + foreach (T item in stream) + { + if(item != null) + { + Console.WriteLine("{0}\n", item.ToString()); + } + } + Console.WriteLine("---------------------------------------------------------------\n"); + Console.WriteLine(""); + } + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Properties/AssemblyInfo.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..98d020782545 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.InteropServices; +using Xunit; + +// 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.ScenarioTests.Common")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Commands.ScenarioTests.Common")] +[assembly: AssemblyCopyright("Copyright © 2014")] +[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("5c9118cb-fc2d-4e5b-9770-2bdbc73241b6")] + +// 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/Common/Commands.ScenarioTests.Common/RMTestBase.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/RMTestBase.cs similarity index 100% rename from src/Common/Commands.ScenarioTests.Common/RMTestBase.cs rename to src/Common/Commands.ScenarioTests.ResourceManager.Common/RMTestBase.cs diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs new file mode 100644 index 000000000000..df0ab1125195 --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs @@ -0,0 +1,89 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; +using Microsoft.Azure.Common.Authentication; + +namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Common +{ + /// + /// Base class for Microsoft Azure PowerShell Service Management unit tests. + /// + public abstract class SMTestBase + { + protected AzureSMProfile currentProfile; + + public SMTestBase() + { + BaseSetup(); + } + + /// + /// Initialize the necessary environment for the tests. + /// + [TestInitialize] + public void BaseSetup() + { + if (AzureSession.DataStore != null && !(AzureSession.DataStore is MemoryDataStore)) + { + AzureSession.DataStore = new MemoryDataStore(); + } + currentProfile = new AzureSMProfile(); + + if (currentProfile.DefaultContext.Subscription == null) + { + var newGuid = Guid.NewGuid(); + currentProfile.Subscriptions[newGuid] = new AzureSubscription { Id = newGuid, Name = "test", Environment = EnvironmentName.AzureCloud, Account = "test" }; + currentProfile.Accounts["test"] = new AzureAccount + { + Id = "test", + Type = AzureAccount.AccountType.User, + Properties = new Dictionary + { + {AzureAccount.Property.Subscriptions, newGuid.ToString()} + } + }; + currentProfile.DefaultSubscription = currentProfile.Subscriptions[newGuid]; + } + AzureSession.AuthenticationFactory = new MockTokenAuthenticationFactory(); + } + + /// + /// Gets or sets a reference to the TestContext used for interacting + /// with the test framework. + /// + public TestContext TestContext { get; set; } + + /// + /// Log a message with the test framework. + /// + /// Format string. + /// Arguments. + public void Log(string format, params object[] args) + { + if (TestContext != null) + { + TestContext.WriteLine(format, args); + } + else + { + Console.WriteLine(format, args); + } + } + } +} diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config b/src/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config new file mode 100644 index 000000000000..bf2914b914fd --- /dev/null +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager.sln b/src/ResourceManager.sln index b793d8fdf990..b4f6d979bca9 100644 --- a/src/ResourceManager.sln +++ b/src/ResourceManager.sln @@ -19,8 +19,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Tags", "ResourceMa EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources.Test", "ResourceManager\Resources\Commands.Resources.Test\Commands.Resources.Test.csproj", "{4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.Common", "Common\Commands.ScenarioTests.Common\Commands.ScenarioTests.Common.csproj", "{C1BDA476-A5CC-4394-914D-48B0EC31A710}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Cmdlets", "ResourceManager\ResourceManager\Commands.ResourceManager\Cmdlets\Commands.ResourceManager.Cmdlets.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement", "ResourceManager\ApiManagement\Commands.ApiManagement\Commands.ApiManagement.csproj", "{DC0A9742-DF36-48C9-BD2F-68D01AED6257}" @@ -123,6 +121,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "Common\C EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Profile", "Common\Commands.Profile\Commands.Profile.csproj", "{C60342B1-47D3-4A0E-8081-9B97CE60B7AF}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.ResourceManager.Common", "Common\Commands.ScenarioTests.ResourceManager.Common\Commands.ScenarioTests.ResourceManager.Common.csproj", "{3436A126-EDC9-4060-8952-9A1BE34CDD95}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -145,10 +145,6 @@ Global {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Debug|Any CPU.Build.0 = Debug|Any CPU {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Release|Any CPU.ActiveCfg = Release|Any CPU {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Release|Any CPU.Build.0 = Release|Any CPU - {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Release|Any CPU.Build.0 = Release|Any CPU {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -353,13 +349,16 @@ Global {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Debug|Any CPU.Build.0 = Debug|Any CPU {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Release|Any CPU.ActiveCfg = Release|Any CPU {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Release|Any CPU.Build.0 = Release|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {C1BDA476-A5CC-4394-914D-48B0EC31A710} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {59D1B5DC-9175-43EC-90C6-CBA601B3565F} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {678AE95D-2364-47D7-888C-3FFA6D412CC8} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} @@ -383,5 +382,6 @@ Global {F220C306-29A3-4511-8518-A58A55C60D07} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {13E031E4-8A43-4B87-9D72-D70180C31C11} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {C60342B1-47D3-4A0E-8081-9B97CE60B7AF} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {3436A126-EDC9-4060-8952-9A1BE34CDD95} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection EndGlobal 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 7c7fd9262a44..619d07952171 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj @@ -153,10 +153,6 @@ - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj index b3d1ae18a17c..07b8c6bc229d 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj @@ -156,10 +156,6 @@ - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources 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 a68d8c01cf0d..aa2b7c4da8be 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 @@ -170,10 +170,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {90def35a-f7ff-40d0-b008-f489a4c092db} Commands.ResourceManagement.Automation diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj index 4e4edf3815f9..bf8b214387a4 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -141,10 +141,6 @@ - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {6C8D2337-C9D1-4F52-94B3-AB63A19F3453} Commands.AzureBackup diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj index 65cd861c6cf1..e0cf448778db 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -127,7 +127,7 @@ False ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll - + ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll @@ -519,10 +519,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {d470e50a-9607-48d6-a924-4f9f86502704} Commands.Batch diff --git a/src/ResourceManager/Commerce/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj b/src/ResourceManager/Commerce/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj index 6a0723c7039a..d0c845fe9ac4 100644 --- a/src/ResourceManager/Commerce/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj +++ b/src/ResourceManager/Commerce/Commands.UsageAggregates.Test/Commands.UsageAggregates.Test.csproj @@ -113,10 +113,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {C1BDA476-A5CC-4394-914D-48B0EC31A710} - Commands.ScenarioTests.Common - {1a131d3a-eac4-420c-a1c0-5490ed68ef67} Commands.UsageAggregates 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 b51a00394497..2ef3c559ea91 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -176,10 +176,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources 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 ee801ec9d44a..495ad9efd7d9 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj @@ -288,10 +288,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} Commands.Common.Storage @@ -325,4 +321,4 @@ --> - + \ No newline at end of file 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 88176b3867ff..fbc91887c367 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj +++ b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj @@ -159,10 +159,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index 9c71259f8c46..b7a914083bea 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -144,10 +144,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {E1F5201D-6067-430E-B303-4E367652991B} Commands.Resources 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 ceb692e1cdf7..338b5779f484 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj @@ -173,10 +173,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {DEA446A1-84E2-46CC-B780-EB4AFDE2460E} Commands.Insights 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 64ab274be849..01adb025f634 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj @@ -291,10 +291,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources 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 4f732dfa07db..901e7de8b96b 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj +++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj @@ -328,10 +328,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj index 5bb98ba26d66..58501c744844 100644 --- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj +++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/Commands.OperationalInsights.Test.csproj @@ -145,10 +145,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - 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 435265a0e8db..9efeb5f15e20 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj @@ -152,10 +152,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {c972e3ef-4461-4758-ba31-93e0947b1253} Commands.RedisCache 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 9a91e7b53972..ac0768b87e74 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -233,10 +233,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {8058d403-06e3-4bed-8924-d166ce303961} Commands.ResourceManager.Cmdlets diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index 0f51e9e6156e..209bf495a05d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -162,10 +162,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {7c879645-31ee-4a78-ad81-5512300fa104} Commands.SiteRecovery 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 53103544b1d1..931679ca52f3 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -248,10 +248,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources 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 c667a95566c1..e9c10b1a1034 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 @@ -119,10 +119,6 @@ - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {a50ab133-5c04-4a17-9054-f8343683ec23} Commands.Management.Storage 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 cab70b2acb75..23562f631cd3 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj @@ -174,10 +174,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {9577252e-0a6b-4d61-86e8-95f7f309a987} Commands.DataFactories 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 47a94fa62f60..d59fbb954d1c 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj @@ -140,10 +140,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {270cbb5f-bb8a-4e33-b35b-95698e607d97} Commands.TrafficManager2 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 d028238afb75..fbe251de87c8 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -155,10 +155,6 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {d470e50a-9607-48d6-a924-4f9f86502704} Commands.Batch From 3ffbfd5e696be12a8dfd8f0d1fef769417e6ca1b Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Sun, 13 Sep 2015 15:53:28 -0700 Subject: [PATCH 58/58] Fix ARM ScenarioTests.Common --- src/Common/Commands.Common/ProfileClient.cs | 12 +-- .../Commands.ResourceManager.Common.csproj | 12 +++ .../Properties/Resources.Designer.cs | 19 ++-- .../Properties/Resources.resx | 3 + ...cenarioTests.ResourceManager.Common.csproj | 6 -- .../EnvironmentSetupHelper.cs | 5 +- .../Mocks/MockClientFactory.cs | 2 +- .../SMTestBase.cs | 89 ------------------- .../GetAzureVMSqlServerExtensionCommand.cs | 4 +- 9 files changed, 41 insertions(+), 111 deletions(-) delete mode 100644 src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs diff --git a/src/Common/Commands.Common/ProfileClient.cs b/src/Common/Commands.Common/ProfileClient.cs index c4cb1476282a..72df8bbebd29 100644 --- a/src/Common/Commands.Common/ProfileClient.cs +++ b/src/Common/Commands.Common/ProfileClient.cs @@ -32,7 +32,7 @@ namespace Microsoft.Azure.Common.Authentication /// public class ProfileClient { - public AzureSMProfile Profile { get; private set; } + public AzureRMProfile Profile { get; private set; } public Action WarningLog; @@ -129,12 +129,12 @@ private void UpgradeProfile() // In case that we changed a disk profile, reload it if (Profile != null && Profile.ProfilePath == newProfileFilePath) { - Profile = new AzureSMProfile(Profile.ProfilePath); + Profile = new AzureRMProfile(Profile.ProfilePath); } } } - public ProfileClient(AzureSMProfile profile) + public ProfileClient(AzureRMProfile profile) { Profile = profile; WarningLog = (s) => Debug.WriteLine(s); @@ -330,16 +330,16 @@ public AzureAccount AddAccountAndLoadSubscriptions(AzureAccount account, AzureEn AddOrSetSubscription(subscription); } - if (Profile.DefaultSubscription == null) + if (Profile.DefaultContext.Subscription == null) { - var firstSubscription = Profile.Subscriptions.Values.FirstOrDefault(); + var firstSubscription = Profile.DefaultContext.Subscription.Values.FirstOrDefault(); if (firstSubscription != null) { SetSubscriptionAsDefault(firstSubscription.Name, firstSubscription.Account); } } - return Profile.Accounts[account.Id]; + return Profile.DefaultContext.Account; } else { diff --git a/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index 62327dbce027..db8db58ab8a8 100644 --- a/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -167,6 +167,18 @@ Common\PowerShellUtilities.cs + + Common\ProfileClient.cs + + + Common\ProfileClientExtensions.cs + + + Common\PSAzureAccount.cs + + + Common\PublishSettingsImporter.cs + Common\RecordingTracingInterceptor.cs diff --git a/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs b/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs index c5d450b83a96..94b1f89ecf98 100644 --- a/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs +++ b/src/Common/Commands.ResourceManager.Common/Properties/Resources.Designer.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Common.Properties { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { + public class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -36,7 +36,7 @@ internal Resources() { /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + public 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.ResourceManager.Common.Properties.Resources", typeof(Resources).Assembly); @@ -51,7 +51,7 @@ internal Resources() { /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + public static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -59,11 +59,11 @@ internal Resources() { resourceCulture = value; } } - + /// /// Looks up a localized string similar to Microsoft Azure PowerShell Data Collection Confirmation. /// - internal static string DataCollectionActivity { + public static string DataCollectionActivity { get { return ResourceManager.GetString("DataCollectionActivity", resourceCulture); } @@ -116,5 +116,14 @@ internal static string DataCollectionSaveFileInformation { return ResourceManager.GetString("DataCollectionSaveFileInformation", resourceCulture); } } + + /// + /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription.. + /// + public static string InvalidDefaultSubscription { + get { + return ResourceManager.GetString("InvalidDefaultSubscription", resourceCulture); + } + } } } diff --git a/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx b/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx index 1fae0c363fce..b54755d00d7e 100644 --- a/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx +++ b/src/Common/Commands.ResourceManager.Common/Properties/Resources.resx @@ -145,4 +145,7 @@ Select Y to enable data collection [Y/N]: The setting profile has been saved to the following path '{0}'. + + No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription. + \ No newline at end of file diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj index e90b30e7332c..290a866a8909 100644 --- a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj @@ -133,7 +133,6 @@ - @@ -143,7 +142,6 @@ - @@ -155,10 +153,6 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs index 03e16d6c5363..b20a41e7fc19 100644 --- a/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Test; @@ -50,8 +51,8 @@ public EnvironmentSetupHelper() { var datastore = new MemoryDataStore(); AzureSession.DataStore = datastore; - var profile = new AzureSMProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile)); - AzureSMCmdlet.CurrentProfile = profile; + var profile = new AzureRMProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile)); + AzureRMCmdlet.DefaultProfile = profile; AzureSession.DataStore = datastore; ProfileClient = new ProfileClient(profile); diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs index b8d315208022..c21e34f4fa0d 100644 --- a/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs +++ b/src/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs @@ -66,7 +66,7 @@ public TClient CreateClient(AzureSMProfile profile, AzureSubscription s { if (subscription == null) { - throw new ArgumentException(Commands.Common.Properties.Resources.InvalidDefaultSubscription); + throw new ArgumentException(Microsoft.Azure.Commands.ResourceManager.Common.Properties.Resources.InvalidDefaultSubscription); } if (profile == null) diff --git a/src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs b/src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs deleted file mode 100644 index df0ab1125195..000000000000 --- a/src/Common/Commands.ScenarioTests.ResourceManager.Common/SMTestBase.cs +++ /dev/null @@ -1,89 +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.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using Microsoft.Azure.Common.Authentication.Models; -using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; -using Microsoft.Azure.Common.Authentication; - -namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Common -{ - /// - /// Base class for Microsoft Azure PowerShell Service Management unit tests. - /// - public abstract class SMTestBase - { - protected AzureSMProfile currentProfile; - - public SMTestBase() - { - BaseSetup(); - } - - /// - /// Initialize the necessary environment for the tests. - /// - [TestInitialize] - public void BaseSetup() - { - if (AzureSession.DataStore != null && !(AzureSession.DataStore is MemoryDataStore)) - { - AzureSession.DataStore = new MemoryDataStore(); - } - currentProfile = new AzureSMProfile(); - - if (currentProfile.DefaultContext.Subscription == null) - { - var newGuid = Guid.NewGuid(); - currentProfile.Subscriptions[newGuid] = new AzureSubscription { Id = newGuid, Name = "test", Environment = EnvironmentName.AzureCloud, Account = "test" }; - currentProfile.Accounts["test"] = new AzureAccount - { - Id = "test", - Type = AzureAccount.AccountType.User, - Properties = new Dictionary - { - {AzureAccount.Property.Subscriptions, newGuid.ToString()} - } - }; - currentProfile.DefaultSubscription = currentProfile.Subscriptions[newGuid]; - } - AzureSession.AuthenticationFactory = new MockTokenAuthenticationFactory(); - } - - /// - /// Gets or sets a reference to the TestContext used for interacting - /// with the test framework. - /// - public TestContext TestContext { get; set; } - - /// - /// Log a message with the test framework. - /// - /// Format string. - /// Arguments. - public void Log(string format, params object[] args) - { - if (TestContext != null) - { - TestContext.WriteLine(format, args); - } - else - { - Console.WriteLine(format, args); - } - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs index e7433aeb6558..8fc3ad197451 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs @@ -57,9 +57,9 @@ public class GetAzureVMSqlServerExtensionCommand : VirtualMachineExtensionBaseCm [ValidateNotNullOrEmpty] public string Name { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); if (String.IsNullOrEmpty(Name)) {