diff --git a/src/Common/Commands.Common.Graph.RBAC/ActiveDirectory/ActiveDirectoryClient.cs b/src/Common/Commands.Common.Graph.RBAC/ActiveDirectory/ActiveDirectoryClient.cs index 4fa7f6028418..cbe31e4b8959 100644 --- a/src/Common/Commands.Common.Graph.RBAC/ActiveDirectory/ActiveDirectoryClient.cs +++ b/src/Common/Commands.Common.Graph.RBAC/ActiveDirectory/ActiveDirectoryClient.cs @@ -689,6 +689,18 @@ public void RemoveAllSpCredentials(string spObjectId) PatchSpPasswordCredentials(spObjectId, passwordCredentials: null); } + public string GetObjectIdFromUPN(string upn) + { + var odataQueryFilter = new Rest.Azure.OData.ODataQuery(s => s.UserPrincipalName == upn); + var user = GraphClient.Users.List(odataQueryFilter.ToString()).SingleOrDefault(); + if (user == null) + { + throw new InvalidOperationException(String.Format(ProjectResources.UserWithUPNDoesntExist, upn)); + } + + return user.ObjectId; + } + public string GetObjectIdFromSPN(string spn) { var odataQueryFilter = new Rest.Azure.OData.ODataQuery(s => s.ServicePrincipalNames.Contains(spn)); diff --git a/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.Designer.cs b/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.Designer.cs index a6d7279bdab3..dbe88f5b7beb 100644 --- a/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.Designer.cs +++ b/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.Designer.cs @@ -140,5 +140,14 @@ internal static string ServicePrincipalWithSPNDoesntExist { return ResourceManager.GetString("ServicePrincipalWithSPNDoesntExist", resourceCulture); } } + + /// + /// Looks up a localized string similar to User with UPN '{0}' does not exist.. + /// + internal static string UserWithUPNDoesntExist { + get { + return ResourceManager.GetString("UserWithUPNDoesntExist", resourceCulture); + } + } } } diff --git a/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.resx b/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.resx index 8442804f8d45..51527820ed10 100644 --- a/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.resx +++ b/src/Common/Commands.Common.Graph.RBAC/Properties/Resources.resx @@ -144,4 +144,7 @@ Service principal with SPN '{0}' does not exist. + + User with UPN '{0}' does not exist. + \ No newline at end of file diff --git a/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.Netcore.psd1 b/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.Netcore.psd1 index 0776918cefb0..866722b1ee5e 100644 --- a/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.Netcore.psd1 +++ b/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.Netcore.psd1 @@ -72,8 +72,7 @@ NestedModules = @('.\Microsoft.Azure.Commands.Subscription.dll') FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzureRmSubscriptionDefinition', - 'New-AzureRmSubscriptionDefinition' +CmdletsToExport = 'New-AzureRmSubscription' # Variables to export from this module # VariablesToExport = @() diff --git a/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.psd1 b/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.psd1 index 8ea6012a185f..782495072b83 100644 --- a/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.psd1 +++ b/src/ResourceManager/Subscription/AzureRM.Subscription.Preview.psd1 @@ -72,8 +72,7 @@ NestedModules = @('.\Microsoft.Azure.Commands.Subscription.dll') FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzureRmSubscriptionDefinition', - 'New-AzureRmSubscriptionDefinition' +CmdletsToExport = 'New-AzureRmSubscription' # Variables to export from this module # VariablesToExport = @() @@ -96,7 +95,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ARM','Subscription','SubscriptionDefinition' + Tags = 'Azure','ARM','Subscription' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' diff --git a/src/ResourceManager/Subscription/ChangeLog.md b/src/ResourceManager/Subscription/ChangeLog.md index 3409da13fe72..30cd20d35b14 100644 --- a/src/ResourceManager/Subscription/ChangeLog.md +++ b/src/ResourceManager/Subscription/ChangeLog.md @@ -18,8 +18,7 @@ - Additional information about change #1 --> ## Current Release - -## Version 0.1.2 +* New cmdlet New-AzureRmSubscription to enable subscription creation under a specific EA enrollment account. * Updated to the latest version of the Azure ClientRuntime ## Version 0.1.1 diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/Commands.Subscription.Test.csproj b/src/ResourceManager/Subscription/Commands.Subscription.Test/Commands.Subscription.Test.csproj index a25f658194fb..091c9ebd756c 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/Commands.Subscription.Test.csproj +++ b/src/ResourceManager/Subscription/Commands.Subscription.Test/Commands.Subscription.Test.csproj @@ -64,7 +64,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.Subscription.1.0.0-preview\lib\net452\Microsoft.Azure.Management.Subscription.dll + ..\..\..\packages\Microsoft.Azure.Management.Subscription.1.1.0-preview\lib\net452\Microsoft.Azure.Management.Subscription.dll False @@ -132,22 +132,16 @@ - + - + PreserveNewest - - Always - - - Always - - + Always diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionDefinitionTests.ps1 b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionDefinitionTests.ps1 deleted file mode 100644 index 511462862659..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionDefinitionTests.ps1 +++ /dev/null @@ -1,64 +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. -# ---------------------------------------------------------------------------------- - -<# -.SYNOPSIS -List subscription definitions -#> -function Test-ListSubscriptionDefinitions -{ - $definitions = Get-AzureRmSubscriptionDefinition - - Assert-AreEqual 4 $definitions.Count - Foreach($def in $definitions) - { - Assert-NotNull $def.Name - } - Assert-AreEqual "MS-AZR-0017P" $definitions[0].OfferType - Assert-AreEqual "MyProdSubscription" $definitions[0].Name - Assert-AreEqual "MyProdSubscription" $definitions[0].SubscriptionDisplayName -} - -<# -.SYNOPSIS -Get subscription definition by name -#> -function Test-GetSubscriptionDefinitionByName -{ - $definition = Get-AzureRmSubscriptionDefinition -Name "MyProdSubscription" - Assert-AreEqual "MyProdSubscription" $definition.Name - Assert-AreEqual "MyProdSubscription" $definition.SubscriptionDisplayName - Assert-AreEqual "MS-AZR-0017P" $definition.OfferType -} - -<# -.SYNOPSIS -Create subscription definition -#> -function Test-NewSubscriptionDefinition -{ - $definitions = Get-AzureRmSubscriptionDefinition - $previousDefinitionCount = $definitions.Count - - $myNewSubDefName = GetAssetName - - $definition = New-AzureRmSubscriptionDefinition -Name $myNewSubDefName -OfferType MS-AZR-0017P - - Assert-AreEqual $myNewSubDefName $definition.Name - Assert-AreEqual $myNewSubDefName $definition.SubscriptionDisplayName - Assert-NotNull $definition.SubscriptionId - - $definitions = Get-AzureRmSubscriptionDefinition - Assert-AreEqual $definitions.Count ($previousDefinitionCount + 1) -} diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionDefinitionTests.cs b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionTests.cs similarity index 60% rename from src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionDefinitionTests.cs rename to src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionTests.cs index 86af18090340..5f79fb28b5eb 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionDefinitionTests.cs +++ b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionTests.cs @@ -21,15 +21,14 @@ namespace Subscription.Test.ScenarioTests { /// - /// The following tests require four subscription definitions to be created manually at this time. This can - /// be done by calling New-AzureRmSubscriptionDefinition. At this time, this can only be done when your tenant is - /// whitelisted by Microsoft. + /// The following tests require four subscriptions to be created manually. This can be done by + /// calling New-AzureRmSubscription. At this time, this can only be done by EA customers. /// - public class SubscriptionDefinitionTests + public class SubscriptionTests { private XunitTracingInterceptor _logger; - public SubscriptionDefinitionTests(Xunit.Abstractions.ITestOutputHelper output) + public SubscriptionTests(Xunit.Abstractions.ITestOutputHelper output) { _logger = new XunitTracingInterceptor(output); XunitTracingInterceptor.AddToContext(_logger); @@ -38,22 +37,9 @@ public SubscriptionDefinitionTests(Xunit.Abstractions.ITestOutputHelper output) [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestListSubscriptionDefinitions() + public void TestNewSubscription() { - TestController.NewInstance.RunPowerShellTest(_logger, "Test-ListSubscriptionDefinitions"); - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestGetSubscriptionDefinitionByName() - { - TestController.NewInstance.RunPowerShellTest(_logger, "Test-GetSubscriptionDefinitionByName"); - } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewSubscriptionDefinition() - { - TestController.NewInstance.RunPowerShellTest(_logger, "Test-NewSubscriptionDefinition"); + TestController.NewInstance.RunPowerShellTest(_logger, "Test-NewSubscription"); } } } diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionTests.ps1 b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionTests.ps1 new file mode 100644 index 000000000000..b850566226b6 --- /dev/null +++ b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/SubscriptionTests.ps1 @@ -0,0 +1,33 @@ +# ---------------------------------------------------------------------------------- +# +# 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 +Create subscription +#> +function Test-NewSubscription +{ + # $accounts = Get-AzureRmEnrollmentAccount + $accounts = @(@{ ObjectId = "cdf813b6-bdc2-4df5-b150-00ccfd7580e2" }) + + # Verify the caller has at least one enrollment account. + Assert-True { $accounts.Count -gt 0 } + + $myNewSubName = GetAssetName + + $newSub = New-AzureRmSubscription -EnrollmentAccountObjectId $accounts[0].ObjectId -Name $myNewSubName -OfferType MS-AZR-0017P + + Assert-AreEqual $myNewSubName $newSub.Name + Assert-NotNull $newSub.SubscriptionId +} diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/TestController.cs b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/TestController.cs index 41c8be131644..2fdc497e3d06 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/TestController.cs +++ b/src/ResourceManager/Subscription/Commands.Subscription.Test/ScenarioTests/TestController.cs @@ -16,7 +16,6 @@ using Microsoft.Azure.Gallery; using Microsoft.Azure.Management.Authorization; using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Subscriptions; using Microsoft.Azure.Test; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; @@ -26,7 +25,6 @@ using System.Collections.Generic; using System.IO; using System.Linq; -using SubscriptionDefinitionClient = Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient; using TestBase = Microsoft.Azure.Test.TestBase; using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory; using TestUtilities = Microsoft.Azure.Test.TestUtilities; @@ -41,14 +39,14 @@ public class TestController : RMTestBase public ResourceManagementClient ResourceManagementClient { get; private set; } - public SubscriptionClient SubscriptionClient { get; private set; } + public Microsoft.Azure.Subscriptions.SubscriptionClient OldSubscriptionClient { get; private set; } + + public Microsoft.Azure.Management.Subscription.SubscriptionClient SubscriptionClient { get; private set; } public GalleryClient GalleryClient { get; private set; } public AuthorizationManagementClient AuthorizationManagementClient { get; private set; } - - public SubscriptionDefinitionClient SubscriptionDefinitionClient { get; private set; } - + public static TestController NewInstance { get @@ -65,17 +63,17 @@ protected TestController() protected void SetupManagementClients(MockContext context) { ResourceManagementClient = GetResourceManagementClient(); - SubscriptionClient = GetSubscriptionClient(); + OldSubscriptionClient = GetOldSubscriptionClient(); + SubscriptionClient = GetSubscriptionClient(context); GalleryClient = GetGalleryClient(); AuthorizationManagementClient = GetAuthorizationManagementClient(); - SubscriptionDefinitionClient = GetSubscriptionDefinitionManagementClient(context); - + _helper.SetupManagementClients( ResourceManagementClient, + OldSubscriptionClient, SubscriptionClient, GalleryClient, - AuthorizationManagementClient, - SubscriptionDefinitionClient); + AuthorizationManagementClient); } public void RunPowerShellTest(ServiceManagemenet.Common.Models.XunitTracingInterceptor logger, params string[] scripts) @@ -166,19 +164,19 @@ private AuthorizationManagementClient GetAuthorizationManagementClient() return TestBase.GetServiceClient(_csmTestFactory); } - private SubscriptionClient GetSubscriptionClient() + private Microsoft.Azure.Subscriptions.SubscriptionClient GetOldSubscriptionClient() { - return TestBase.GetServiceClient(_csmTestFactory); + return TestBase.GetServiceClient(_csmTestFactory); } - private GalleryClient GetGalleryClient() + private Microsoft.Azure.Management.Subscription.SubscriptionClient GetSubscriptionClient(MockContext context) { - return TestBase.GetServiceClient(_csmTestFactory); + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } - private SubscriptionDefinitionClient GetSubscriptionDefinitionManagementClient(MockContext context) + private GalleryClient GetGalleryClient() { - return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + return TestBase.GetServiceClient(_csmTestFactory); } } } diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestGetSubscriptionDefinitionByName.json b/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestGetSubscriptionDefinitionByName.json deleted file mode 100644 index 7cc3fe5806e1..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestGetSubscriptionDefinitionByName.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubscription?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbkRlZmluaXRpb25zL015UHJvZFN1YnNjcmlwdGlvbj9hcGktdmVyc2lvbj0yMDE3LTExLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c346b47-e8fa-4b2b-940b-dccca378e876" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubscription\",\r\n \"name\": \"MyProdSubscription\",\r\n \"properties\": {\r\n \"etag\": \"MfjP0w==\",\r\n \"subscriptionDisplayName\": \"MyProdSubscription\",\r\n \"subscriptionId\": \"86869d42-1782-4337-98b0-c905fb937d46\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "332" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14999" - ], - "x-ms-request-id": [ - "30080cab-b277-45fb-ba65-a19a71866cc9" - ], - "x-ms-correlation-request-id": [ - "30080cab-b277-45fb-ba65-a19a71866cc9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171123T073847Z:30080cab-b277-45fb-ba65-a19a71866cc9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 23 Nov 2017 07:38:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "430ed244-e513-4b13-b113-e877158ed7f5" - } -} \ No newline at end of file diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestListSubscriptionDefinitions.json b/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestListSubscriptionDefinitions.json deleted file mode 100644 index cd93f1e3889b..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestListSubscriptionDefinitions.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionDefinitions?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbkRlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fbeb25a7-aa70-4f2f-981e-6e908f5d0280" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubscription\",\r\n \"name\": \"MyProdSubscription\",\r\n \"properties\": {\r\n \"etag\": \"MfjP0w==\",\r\n \"subscriptionDisplayName\": \"MyProdSubscription\",\r\n \"subscriptionId\": \"86869d42-1782-4337-98b0-c905fb937d46\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod1\",\r\n \"name\": \"e2esubprod1\",\r\n \"properties\": {\r\n \"etag\": \"To8acg==\",\r\n \"subscriptionDisplayName\": \"mye2esubprod1\",\r\n \"subscriptionId\": \"430ed244-e513-4b13-b113-e877158ed7f5\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod6\",\r\n \"name\": \"e2esubprod6\",\r\n \"properties\": {\r\n \"etag\": \"YRP88g==\",\r\n \"subscriptionDisplayName\": \"e2esubprod6\",\r\n \"subscriptionId\": \"a21087f6-05f2-4be3-a831-185aad424df6\",\r\n \"offerType\": \"MS-AZR-0148P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod7\",\r\n \"name\": \"e2esubprod7\",\r\n \"properties\": {\r\n \"etag\": \"DqdLvg==\",\r\n \"subscriptionDisplayName\": \"e2esubprod7\",\r\n \"subscriptionId\": \"519fce51-f304-4f10-9d03-777b7c47c8f0\",\r\n \"offerType\": \"MS-AZR-0148P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1282" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14998" - ], - "x-ms-request-id": [ - "e914624d-5e6f-4dd8-92dc-162d876085d1" - ], - "x-ms-correlation-request-id": [ - "e914624d-5e6f-4dd8-92dc-162d876085d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171123T073143Z:e914624d-5e6f-4dd8-92dc-162d876085d1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 23 Nov 2017 07:31:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "430ed244-e513-4b13-b113-e877158ed7f5" - } -} \ No newline at end of file diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestNewSubscriptionDefinition.json b/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestNewSubscriptionDefinition.json deleted file mode 100644 index 7be090d38178..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionDefinitionTests/TestNewSubscriptionDefinition.json +++ /dev/null @@ -1,3882 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionDefinitions?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbkRlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b31d92c0-085a-4390-a9c3-633013f8a6d9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubDef99\",\r\n \"name\": \"MyProdSubDef99\",\r\n \"properties\": {\r\n \"etag\": \"HlRr6g==\",\r\n \"subscriptionDisplayName\": \"MyProdSubDef99\",\r\n \"subscriptionId\": \"cefe2134-b409-4642-b030-bd7a8f107e84\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubscription\",\r\n \"name\": \"MyProdSubscription\",\r\n \"properties\": {\r\n \"etag\": \"MfjP0w==\",\r\n \"subscriptionDisplayName\": \"MyProdSubscription\",\r\n \"subscriptionId\": \"86869d42-1782-4337-98b0-c905fb937d46\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyTestSubDef1\",\r\n \"name\": \"MyTestSubDef1\",\r\n \"properties\": {\r\n \"etag\": \"NqYHYg==\",\r\n \"subscriptionDisplayName\": \"MyTestSubDef1\",\r\n \"subscriptionId\": \"368425df-b536-4f42-b1ba-64613cfcc4b5\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod1\",\r\n \"name\": \"e2esubprod1\",\r\n \"properties\": {\r\n \"etag\": \"To8acg==\",\r\n \"subscriptionDisplayName\": \"mye2esubprod1\",\r\n \"subscriptionId\": \"430ed244-e513-4b13-b113-e877158ed7f5\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod6\",\r\n \"name\": \"e2esubprod6\",\r\n \"properties\": {\r\n \"etag\": \"YRP88g==\",\r\n \"subscriptionDisplayName\": \"e2esubprod6\",\r\n \"subscriptionId\": \"a21087f6-05f2-4be3-a831-185aad424df6\",\r\n \"offerType\": \"MS-AZR-0148P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod7\",\r\n \"name\": \"e2esubprod7\",\r\n \"properties\": {\r\n \"etag\": \"DqdLvg==\",\r\n \"subscriptionDisplayName\": \"e2esubprod7\",\r\n \"subscriptionId\": \"519fce51-f304-4f10-9d03-777b7c47c8f0\",\r\n \"offerType\": \"MS-AZR-0148P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/subat201711271230\",\r\n \"name\": \"subat201711271230\",\r\n \"properties\": {\r\n \"etag\": \"VoDLkA==\",\r\n \"subscriptionDisplayName\": \"Subat201711271230\",\r\n \"subscriptionId\": \"5571f36c-bacb-4b1d-bff1-ca1418d142af\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2251" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14999" - ], - "x-ms-request-id": [ - "e3d1a481-8299-4c6f-842b-6182d6b26b3e" - ], - "x-ms-correlation-request-id": [ - "e3d1a481-8299-4c6f-842b-6182d6b26b3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182649Z:e3d1a481-8299-4c6f-842b-6182d6b26b3e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:26:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionDefinitions?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbkRlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d173cbf-469c-4dcf-b485-5a3645059de4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubDef99\",\r\n \"name\": \"MyProdSubDef99\",\r\n \"properties\": {\r\n \"etag\": \"HlRr6g==\",\r\n \"subscriptionDisplayName\": \"MyProdSubDef99\",\r\n \"subscriptionId\": \"cefe2134-b409-4642-b030-bd7a8f107e84\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyProdSubscription\",\r\n \"name\": \"MyProdSubscription\",\r\n \"properties\": {\r\n \"etag\": \"MfjP0w==\",\r\n \"subscriptionDisplayName\": \"MyProdSubscription\",\r\n \"subscriptionId\": \"86869d42-1782-4337-98b0-c905fb937d46\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/MyTestSubDef1\",\r\n \"name\": \"MyTestSubDef1\",\r\n \"properties\": {\r\n \"etag\": \"NqYHYg==\",\r\n \"subscriptionDisplayName\": \"MyTestSubDef1\",\r\n \"subscriptionId\": \"368425df-b536-4f42-b1ba-64613cfcc4b5\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod1\",\r\n \"name\": \"e2esubprod1\",\r\n \"properties\": {\r\n \"etag\": \"To8acg==\",\r\n \"subscriptionDisplayName\": \"mye2esubprod1\",\r\n \"subscriptionId\": \"430ed244-e513-4b13-b113-e877158ed7f5\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod6\",\r\n \"name\": \"e2esubprod6\",\r\n \"properties\": {\r\n \"etag\": \"YRP88g==\",\r\n \"subscriptionDisplayName\": \"e2esubprod6\",\r\n \"subscriptionId\": \"a21087f6-05f2-4be3-a831-185aad424df6\",\r\n \"offerType\": \"MS-AZR-0148P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/e2esubprod7\",\r\n \"name\": \"e2esubprod7\",\r\n \"properties\": {\r\n \"etag\": \"DqdLvg==\",\r\n \"subscriptionDisplayName\": \"e2esubprod7\",\r\n \"subscriptionId\": \"519fce51-f304-4f10-9d03-777b7c47c8f0\",\r\n \"offerType\": \"MS-AZR-0148P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/ps4631\",\r\n \"name\": \"ps4631\",\r\n \"properties\": {\r\n \"etag\": \"vg0lUA==\",\r\n \"subscriptionDisplayName\": \"ps4631\",\r\n \"subscriptionId\": \"6384690c-8764-4369-91d0-763132b9269e\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/subat201711271230\",\r\n \"name\": \"subat201711271230\",\r\n \"properties\": {\r\n \"etag\": \"VoDLkA==\",\r\n \"subscriptionDisplayName\": \"Subat201711271230\",\r\n \"subscriptionId\": \"5571f36c-bacb-4b1d-bff1-ca1418d142af\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2548" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14945" - ], - "x-ms-request-id": [ - "53eb1719-c615-41f4-b4e1-fea4ad636fff" - ], - "x-ms-correlation-request-id": [ - "53eb1719-c615-41f4-b4e1-fea4ad636fff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182755Z:53eb1719-c615-41f4-b4e1-fea4ad636fff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:55 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionDefinitions/ps4631?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbkRlZmluaXRpb25zL3BzNDYzMT9hcGktdmVyc2lvbj0yMDE3LTExLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionDisplayName\": \"ps4631\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "103" - ], - "x-ms-client-request-id": [ - "f0015227-b414-47f9-a677-bb3fdb0a06a6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-resource-requests": [ - "499" - ], - "x-ms-request-id": [ - "d153927b-1b38-4b83-b048-357fe4c727a1" - ], - "x-ms-correlation-request-id": [ - "d153927b-1b38-4b83-b048-357fe4c727a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182702Z:d153927b-1b38-4b83-b048-357fe4c727a1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:01 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14998" - ], - "x-ms-request-id": [ - "b086dfc2-128b-4ada-82d9-c1b44056788e" - ], - "x-ms-correlation-request-id": [ - "b086dfc2-128b-4ada-82d9-c1b44056788e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182703Z:b086dfc2-128b-4ada-82d9-c1b44056788e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:02 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14997" - ], - "x-ms-request-id": [ - "0543ae23-e9ec-4b6f-be7d-64f779370201" - ], - "x-ms-correlation-request-id": [ - "0543ae23-e9ec-4b6f-be7d-64f779370201" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182704Z:0543ae23-e9ec-4b6f-be7d-64f779370201" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:03 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14996" - ], - "x-ms-request-id": [ - "ab5f7371-cc0f-4185-9bed-6b6efef2ca35" - ], - "x-ms-correlation-request-id": [ - "ab5f7371-cc0f-4185-9bed-6b6efef2ca35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182704Z:ab5f7371-cc0f-4185-9bed-6b6efef2ca35" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:04 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14995" - ], - "x-ms-request-id": [ - "464038b6-9c61-4ed1-92c8-3872cca43e1e" - ], - "x-ms-correlation-request-id": [ - "464038b6-9c61-4ed1-92c8-3872cca43e1e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182705Z:464038b6-9c61-4ed1-92c8-3872cca43e1e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:04 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" - ], - "x-ms-request-id": [ - "c17c16e6-fd4d-4171-a764-a98144485096" - ], - "x-ms-correlation-request-id": [ - "c17c16e6-fd4d-4171-a764-a98144485096" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182706Z:c17c16e6-fd4d-4171-a764-a98144485096" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:05 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" - ], - "x-ms-request-id": [ - "58d237ef-f32c-4208-aa0d-927e7f230b7e" - ], - "x-ms-correlation-request-id": [ - "58d237ef-f32c-4208-aa0d-927e7f230b7e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182707Z:58d237ef-f32c-4208-aa0d-927e7f230b7e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:06 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" - ], - "x-ms-request-id": [ - "37d8014d-d34d-4af0-b46d-08bd37f80fb9" - ], - "x-ms-correlation-request-id": [ - "37d8014d-d34d-4af0-b46d-08bd37f80fb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182707Z:37d8014d-d34d-4af0-b46d-08bd37f80fb9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:06 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" - ], - "x-ms-request-id": [ - "6b8b9328-a6e2-47c7-8bdf-e75fb2486d08" - ], - "x-ms-correlation-request-id": [ - "6b8b9328-a6e2-47c7-8bdf-e75fb2486d08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182708Z:6b8b9328-a6e2-47c7-8bdf-e75fb2486d08" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:07 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" - ], - "x-ms-request-id": [ - "146982e3-be11-418f-921c-198fe4437159" - ], - "x-ms-correlation-request-id": [ - "146982e3-be11-418f-921c-198fe4437159" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182709Z:146982e3-be11-418f-921c-198fe4437159" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:08 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" - ], - "x-ms-request-id": [ - "1a83e8c1-74e1-4d16-bd50-75d35f9bc7cd" - ], - "x-ms-correlation-request-id": [ - "1a83e8c1-74e1-4d16-bd50-75d35f9bc7cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182710Z:1a83e8c1-74e1-4d16-bd50-75d35f9bc7cd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:10 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" - ], - "x-ms-request-id": [ - "549808c3-24bf-4242-81d0-4f492f964426" - ], - "x-ms-correlation-request-id": [ - "549808c3-24bf-4242-81d0-4f492f964426" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182710Z:549808c3-24bf-4242-81d0-4f492f964426" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:10 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" - ], - "x-ms-request-id": [ - "f4c4ddc9-4ffa-4e69-a467-7d8b4fd08049" - ], - "x-ms-correlation-request-id": [ - "f4c4ddc9-4ffa-4e69-a467-7d8b4fd08049" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182711Z:f4c4ddc9-4ffa-4e69-a467-7d8b4fd08049" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:11 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14986" - ], - "x-ms-request-id": [ - "9b49d0d4-cbf1-47ac-b960-00a61dae1ab6" - ], - "x-ms-correlation-request-id": [ - "9b49d0d4-cbf1-47ac-b960-00a61dae1ab6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182712Z:9b49d0d4-cbf1-47ac-b960-00a61dae1ab6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:12 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14985" - ], - "x-ms-request-id": [ - "364a912f-6198-4a91-a328-fd9f43a26e0c" - ], - "x-ms-correlation-request-id": [ - "364a912f-6198-4a91-a328-fd9f43a26e0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182713Z:364a912f-6198-4a91-a328-fd9f43a26e0c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:13 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14984" - ], - "x-ms-request-id": [ - "42fab18e-67a8-4190-9965-6e34a81ed366" - ], - "x-ms-correlation-request-id": [ - "42fab18e-67a8-4190-9965-6e34a81ed366" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182713Z:42fab18e-67a8-4190-9965-6e34a81ed366" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:13 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14983" - ], - "x-ms-request-id": [ - "85d0a55d-95be-4a24-b672-81b22e9a9f09" - ], - "x-ms-correlation-request-id": [ - "85d0a55d-95be-4a24-b672-81b22e9a9f09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182714Z:85d0a55d-95be-4a24-b672-81b22e9a9f09" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:14 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "v" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14982" - ], - "x-ms-request-id": [ - "be91f966-8bd1-4147-89ec-3f12818c97d2" - ], - "x-ms-correlation-request-id": [ - "be91f966-8bd1-4147-89ec-3f12818c97d2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182715Z:be91f966-8bd1-4147-89ec-3f12818c97d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:15 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14981" - ], - "x-ms-request-id": [ - "662a49d7-f067-4334-9aea-91f6d7c4ee42" - ], - "x-ms-correlation-request-id": [ - "662a49d7-f067-4334-9aea-91f6d7c4ee42" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182716Z:662a49d7-f067-4334-9aea-91f6d7c4ee42" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:15 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14980" - ], - "x-ms-request-id": [ - "563f2e8c-e802-4dc1-8856-635e9ccf86ff" - ], - "x-ms-correlation-request-id": [ - "563f2e8c-e802-4dc1-8856-635e9ccf86ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182716Z:563f2e8c-e802-4dc1-8856-635e9ccf86ff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:16 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14979" - ], - "x-ms-request-id": [ - "fe6a4a68-9c0f-4b11-9177-c280c8bcf775" - ], - "x-ms-correlation-request-id": [ - "fe6a4a68-9c0f-4b11-9177-c280c8bcf775" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182717Z:fe6a4a68-9c0f-4b11-9177-c280c8bcf775" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:17 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14978" - ], - "x-ms-request-id": [ - "b768c297-4423-4c86-93bb-7401e4f79765" - ], - "x-ms-correlation-request-id": [ - "b768c297-4423-4c86-93bb-7401e4f79765" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182718Z:b768c297-4423-4c86-93bb-7401e4f79765" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:18 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14977" - ], - "x-ms-request-id": [ - "a51b8ab5-e540-407b-9853-9db778bb8e86" - ], - "x-ms-correlation-request-id": [ - "a51b8ab5-e540-407b-9853-9db778bb8e86" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182719Z:a51b8ab5-e540-407b-9853-9db778bb8e86" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:18 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14976" - ], - "x-ms-request-id": [ - "ed505579-a1f1-4ea2-83cf-b8cfab107d3d" - ], - "x-ms-correlation-request-id": [ - "ed505579-a1f1-4ea2-83cf-b8cfab107d3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182719Z:ed505579-a1f1-4ea2-83cf-b8cfab107d3d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:19 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14975" - ], - "x-ms-request-id": [ - "772b912a-60f4-40d3-975a-8792aa1fbf91" - ], - "x-ms-correlation-request-id": [ - "772b912a-60f4-40d3-975a-8792aa1fbf91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182720Z:772b912a-60f4-40d3-975a-8792aa1fbf91" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:20 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14974" - ], - "x-ms-request-id": [ - "36ac4f07-32a2-4014-a090-7c6f36aaaacc" - ], - "x-ms-correlation-request-id": [ - "36ac4f07-32a2-4014-a090-7c6f36aaaacc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182721Z:36ac4f07-32a2-4014-a090-7c6f36aaaacc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:21 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14973" - ], - "x-ms-request-id": [ - "4f4e80b9-b304-4290-8ff3-225622abdc91" - ], - "x-ms-correlation-request-id": [ - "4f4e80b9-b304-4290-8ff3-225622abdc91" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182722Z:4f4e80b9-b304-4290-8ff3-225622abdc91" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:21 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14972" - ], - "x-ms-request-id": [ - "e36e4b44-588e-46d8-93b5-a958ef756fe8" - ], - "x-ms-correlation-request-id": [ - "e36e4b44-588e-46d8-93b5-a958ef756fe8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182722Z:e36e4b44-588e-46d8-93b5-a958ef756fe8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:22 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14971" - ], - "x-ms-request-id": [ - "732c5329-b4b4-4012-9b48-d1b1cd598706" - ], - "x-ms-correlation-request-id": [ - "732c5329-b4b4-4012-9b48-d1b1cd598706" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182723Z:732c5329-b4b4-4012-9b48-d1b1cd598706" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:23 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14970" - ], - "x-ms-request-id": [ - "9d578e5c-d330-4983-a356-53f0fc485b7a" - ], - "x-ms-correlation-request-id": [ - "9d578e5c-d330-4983-a356-53f0fc485b7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182724Z:9d578e5c-d330-4983-a356-53f0fc485b7a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:23 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14969" - ], - "x-ms-request-id": [ - "5c6ac232-dd57-4864-aef1-251d202dbc43" - ], - "x-ms-correlation-request-id": [ - "5c6ac232-dd57-4864-aef1-251d202dbc43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182725Z:5c6ac232-dd57-4864-aef1-251d202dbc43" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:24 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14968" - ], - "x-ms-request-id": [ - "6dfd1ec3-f05e-4714-97c0-4401915450d9" - ], - "x-ms-correlation-request-id": [ - "6dfd1ec3-f05e-4714-97c0-4401915450d9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182725Z:6dfd1ec3-f05e-4714-97c0-4401915450d9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:25 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14967" - ], - "x-ms-request-id": [ - "a7040e27-0bd4-46d9-b0af-b56181283f1a" - ], - "x-ms-correlation-request-id": [ - "a7040e27-0bd4-46d9-b0af-b56181283f1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182726Z:a7040e27-0bd4-46d9-b0af-b56181283f1a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:25 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14966" - ], - "x-ms-request-id": [ - "9c39306f-8404-4584-a2ad-8b405c765e49" - ], - "x-ms-correlation-request-id": [ - "9c39306f-8404-4584-a2ad-8b405c765e49" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182727Z:9c39306f-8404-4584-a2ad-8b405c765e49" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:26 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14965" - ], - "x-ms-request-id": [ - "ac1fa234-f3e6-407e-a8a1-06a068a20a0b" - ], - "x-ms-correlation-request-id": [ - "ac1fa234-f3e6-407e-a8a1-06a068a20a0b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182728Z:ac1fa234-f3e6-407e-a8a1-06a068a20a0b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:27 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14964" - ], - "x-ms-request-id": [ - "e03769b1-bf92-4f06-b1c6-92a388d7e277" - ], - "x-ms-correlation-request-id": [ - "e03769b1-bf92-4f06-b1c6-92a388d7e277" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182728Z:e03769b1-bf92-4f06-b1c6-92a388d7e277" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:28 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14963" - ], - "x-ms-request-id": [ - "d0ca6554-bfaf-4713-9e90-95e9e0822bf3" - ], - "x-ms-correlation-request-id": [ - "d0ca6554-bfaf-4713-9e90-95e9e0822bf3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182729Z:d0ca6554-bfaf-4713-9e90-95e9e0822bf3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:28 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14962" - ], - "x-ms-request-id": [ - "9152703e-218c-4a0c-ac67-01c607499dd1" - ], - "x-ms-correlation-request-id": [ - "9152703e-218c-4a0c-ac67-01c607499dd1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182730Z:9152703e-218c-4a0c-ac67-01c607499dd1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:29 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14961" - ], - "x-ms-request-id": [ - "875c3dba-4251-482a-99ca-0117c129192b" - ], - "x-ms-correlation-request-id": [ - "875c3dba-4251-482a-99ca-0117c129192b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182730Z:875c3dba-4251-482a-99ca-0117c129192b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:30 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14960" - ], - "x-ms-request-id": [ - "ab15897d-7ac9-4035-a752-00e0f77e3268" - ], - "x-ms-correlation-request-id": [ - "ab15897d-7ac9-4035-a752-00e0f77e3268" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182731Z:ab15897d-7ac9-4035-a752-00e0f77e3268" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:31 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14959" - ], - "x-ms-request-id": [ - "1fb679b6-974c-4f61-a3c7-00d396a7b2c7" - ], - "x-ms-correlation-request-id": [ - "1fb679b6-974c-4f61-a3c7-00d396a7b2c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182732Z:1fb679b6-974c-4f61-a3c7-00d396a7b2c7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:31 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14958" - ], - "x-ms-request-id": [ - "445811d0-40cb-41d8-b756-0fb6eb7f18c8" - ], - "x-ms-correlation-request-id": [ - "445811d0-40cb-41d8-b756-0fb6eb7f18c8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182733Z:445811d0-40cb-41d8-b756-0fb6eb7f18c8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:32 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14957" - ], - "x-ms-request-id": [ - "1a297ac5-5c50-40a5-8c14-6a8b0cfa63bb" - ], - "x-ms-correlation-request-id": [ - "1a297ac5-5c50-40a5-8c14-6a8b0cfa63bb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182733Z:1a297ac5-5c50-40a5-8c14-6a8b0cfa63bb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:33 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14956" - ], - "x-ms-request-id": [ - "9805f3ce-967e-4977-9a05-64a1828ea935" - ], - "x-ms-correlation-request-id": [ - "9805f3ce-967e-4977-9a05-64a1828ea935" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182734Z:9805f3ce-967e-4977-9a05-64a1828ea935" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:33 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14955" - ], - "x-ms-request-id": [ - "874c6764-8003-42e6-a633-4c8a55959d9f" - ], - "x-ms-correlation-request-id": [ - "874c6764-8003-42e6-a633-4c8a55959d9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182735Z:874c6764-8003-42e6-a633-4c8a55959d9f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:34 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14954" - ], - "x-ms-request-id": [ - "103fe8e7-02e7-407f-bc53-0998de0b0407" - ], - "x-ms-correlation-request-id": [ - "103fe8e7-02e7-407f-bc53-0998de0b0407" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182736Z:103fe8e7-02e7-407f-bc53-0998de0b0407" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:35 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14953" - ], - "x-ms-request-id": [ - "c377e8cd-07f1-46d4-8ba7-6031804df2cd" - ], - "x-ms-correlation-request-id": [ - "c377e8cd-07f1-46d4-8ba7-6031804df2cd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182737Z:c377e8cd-07f1-46d4-8ba7-6031804df2cd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:36 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14952" - ], - "x-ms-request-id": [ - "bf0ce779-9fbc-4048-b343-c1c76ac3f04a" - ], - "x-ms-correlation-request-id": [ - "bf0ce779-9fbc-4048-b343-c1c76ac3f04a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182737Z:bf0ce779-9fbc-4048-b343-c1c76ac3f04a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:36 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14951" - ], - "x-ms-request-id": [ - "d211d8f1-ad3c-4e65-bee9-29d0abb22609" - ], - "x-ms-correlation-request-id": [ - "d211d8f1-ad3c-4e65-bee9-29d0abb22609" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182738Z:d211d8f1-ad3c-4e65-bee9-29d0abb22609" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:37 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14950" - ], - "x-ms-request-id": [ - "99742c19-6c8b-4c10-aaa0-313726426377" - ], - "x-ms-correlation-request-id": [ - "99742c19-6c8b-4c10-aaa0-313726426377" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182739Z:99742c19-6c8b-4c10-aaa0-313726426377" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:38 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14949" - ], - "x-ms-request-id": [ - "b5f02c7b-c3bc-4c48-a053-825cdfee27fb" - ], - "x-ms-correlation-request-id": [ - "b5f02c7b-c3bc-4c48-a053-825cdfee27fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182740Z:b5f02c7b-c3bc-4c48-a053-825cdfee27fb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:39 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14948" - ], - "x-ms-request-id": [ - "f6c3784e-a384-4430-aab3-fd11589f7aaf" - ], - "x-ms-correlation-request-id": [ - "f6c3784e-a384-4430-aab3-fd11589f7aaf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182741Z:f6c3784e-a384-4430-aab3-fd11589f7aaf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:41 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14947" - ], - "x-ms-request-id": [ - "16f905d3-5b84-436e-961f-42ab7800f49c" - ], - "x-ms-correlation-request-id": [ - "16f905d3-5b84-436e-961f-42ab7800f49c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182741Z:16f905d3-5b84-436e-961f-42ab7800f49c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:41 GMT" - ], - "Location": [ - "https://management.azure.com/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/f24b4a11-4b45-4aa6-a5c3-dd47e9dcef50?api-version=2017-11-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvZjI0YjRhMTEtNGI0NS00YWE2LWE1YzMtZGQ0N2U5ZGNlZjUwP2FwaS12ZXJzaW9uPTIwMTctMTEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2556.0", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Subscription.SubscriptionDefinitionsClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Subscription/subscriptionDefinitions/ps4631\",\r\n \"name\": \"ps4631\",\r\n \"properties\": {\r\n \"etag\": \"vg0lUA==\",\r\n \"subscriptionDisplayName\": \"ps4631\",\r\n \"subscriptionId\": \"6384690c-8764-4369-91d0-763132b9269e\",\r\n \"offerType\": \"MS-AZR-0017P\"\r\n },\r\n \"type\": \"Microsoft.Subscription/subscriptionDefinitions\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "296" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-content-type-options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "14946" - ], - "x-ms-request-id": [ - "50500547-bf9b-43ea-8eee-84af43b4e9f8" - ], - "x-ms-correlation-request-id": [ - "50500547-bf9b-43ea-8eee-84af43b4e9f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20171128T182747Z:50500547-bf9b-43ea-8eee-84af43b4e9f8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 28 Nov 2017 18:27:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "Test-NewSubscriptionDefinition": [ - "ps4631" - ] - }, - "Variables": { - "SubscriptionId": "430ed244-e513-4b13-b113-e877158ed7f5" - } -} \ No newline at end of file diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionTests/TestNewSubscription.json b/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionTests/TestNewSubscription.json new file mode 100644 index 000000000000..4d1705d5b7af --- /dev/null +++ b/src/ResourceManager/Subscription/Commands.Subscription.Test/SessionRecords/Subscription.Test.ScenarioTests.SubscriptionTests/TestNewSubscription.json @@ -0,0 +1,2472 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Billing/enrollmentAccounts/cdf813b6-bdc2-4df5-b150-00ccfd7580e2/providers/Microsoft.Subscription/createSubscription?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmlsbGluZy9lbnJvbGxtZW50QWNjb3VudHMvY2RmODEzYjYtYmRjMi00ZGY1LWIxNTAtMDBjY2ZkNzU4MGUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL2NyZWF0ZVN1YnNjcmlwdGlvbj9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"displayName\": \"ps2774\",\r\n \"owners\": [],\r\n \"offerType\": \"MS-AZR-0017P\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "80" + ], + "x-ms-client-request-id": [ + "a86b07a0-b562-478f-9ad8-3d33afbdf862" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b6565c93-cea5-461e-b66d-3a58639d8e48" + ], + "x-ms-correlation-request-id": [ + "b6565c93-cea5-461e-b66d-3a58639d8e48" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T221923Z:b6565c93-cea5-461e-b66d-3a58639d8e48" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:19:22 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14983" + ], + "x-ms-request-id": [ + "26d4c3b1-3a23-4a2c-b6f5-0f188183fa67" + ], + "x-ms-correlation-request-id": [ + "26d4c3b1-3a23-4a2c-b6f5-0f188183fa67" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T221933Z:26d4c3b1-3a23-4a2c-b6f5-0f188183fa67" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:19:33 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14982" + ], + "x-ms-request-id": [ + "c2ef993f-88c1-4f7f-8b0e-45c3c74bcb47" + ], + "x-ms-correlation-request-id": [ + "c2ef993f-88c1-4f7f-8b0e-45c3c74bcb47" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T221944Z:c2ef993f-88c1-4f7f-8b0e-45c3c74bcb47" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:19:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14981" + ], + "x-ms-request-id": [ + "0c6e6b7f-366e-43f5-a55a-d8fed6388ade" + ], + "x-ms-correlation-request-id": [ + "0c6e6b7f-366e-43f5-a55a-d8fed6388ade" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T221954Z:0c6e6b7f-366e-43f5-a55a-d8fed6388ade" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:19:54 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14983" + ], + "x-ms-request-id": [ + "292ce99a-bb30-400f-b372-cb87ceaa3ccb" + ], + "x-ms-correlation-request-id": [ + "292ce99a-bb30-400f-b372-cb87ceaa3ccb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222005Z:292ce99a-bb30-400f-b372-cb87ceaa3ccb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:20:05 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14982" + ], + "x-ms-request-id": [ + "1674f133-23f9-439e-b8db-fd90fa8ee056" + ], + "x-ms-correlation-request-id": [ + "1674f133-23f9-439e-b8db-fd90fa8ee056" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222016Z:1674f133-23f9-439e-b8db-fd90fa8ee056" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:20:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14981" + ], + "x-ms-request-id": [ + "eb69bd43-b9d9-4e77-92a1-b8d7b158f9c1" + ], + "x-ms-correlation-request-id": [ + "eb69bd43-b9d9-4e77-92a1-b8d7b158f9c1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222026Z:eb69bd43-b9d9-4e77-92a1-b8d7b158f9c1" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:20:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14980" + ], + "x-ms-request-id": [ + "eafc9c49-e001-497d-a6b2-691edd31bb0e" + ], + "x-ms-correlation-request-id": [ + "eafc9c49-e001-497d-a6b2-691edd31bb0e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222038Z:eafc9c49-e001-497d-a6b2-691edd31bb0e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:20:37 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14979" + ], + "x-ms-request-id": [ + "598db02b-e7fd-41ac-a59d-aab9f84dccee" + ], + "x-ms-correlation-request-id": [ + "598db02b-e7fd-41ac-a59d-aab9f84dccee" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222048Z:598db02b-e7fd-41ac-a59d-aab9f84dccee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:20:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14978" + ], + "x-ms-request-id": [ + "2c39da2e-4732-4db5-b0a3-99db5400ea8f" + ], + "x-ms-correlation-request-id": [ + "2c39da2e-4732-4db5-b0a3-99db5400ea8f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222059Z:2c39da2e-4732-4db5-b0a3-99db5400ea8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:20:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14977" + ], + "x-ms-request-id": [ + "1a526681-6da0-4a0a-87b2-e5f37aaed18f" + ], + "x-ms-correlation-request-id": [ + "1a526681-6da0-4a0a-87b2-e5f37aaed18f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222109Z:1a526681-6da0-4a0a-87b2-e5f37aaed18f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:21:08 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14976" + ], + "x-ms-request-id": [ + "2050afbd-decd-4ab3-b27a-dd8e7c2f4387" + ], + "x-ms-correlation-request-id": [ + "2050afbd-decd-4ab3-b27a-dd8e7c2f4387" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222120Z:2050afbd-decd-4ab3-b27a-dd8e7c2f4387" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:21:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14975" + ], + "x-ms-request-id": [ + "66420b5b-3e3b-473e-b570-00d65898a9d1" + ], + "x-ms-correlation-request-id": [ + "66420b5b-3e3b-473e-b570-00d65898a9d1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222130Z:66420b5b-3e3b-473e-b570-00d65898a9d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:21:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14974" + ], + "x-ms-request-id": [ + "d9fb41b2-8244-4aa3-a707-11b8c35f44f4" + ], + "x-ms-correlation-request-id": [ + "d9fb41b2-8244-4aa3-a707-11b8c35f44f4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222141Z:d9fb41b2-8244-4aa3-a707-11b8c35f44f4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:21:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14973" + ], + "x-ms-request-id": [ + "cd92205f-ff7d-45e7-8c5a-29aa82b4567f" + ], + "x-ms-correlation-request-id": [ + "cd92205f-ff7d-45e7-8c5a-29aa82b4567f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222152Z:cd92205f-ff7d-45e7-8c5a-29aa82b4567f" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:21:52 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14983" + ], + "x-ms-request-id": [ + "b6284d09-4de9-4ca2-b86a-7cea360df583" + ], + "x-ms-correlation-request-id": [ + "b6284d09-4de9-4ca2-b86a-7cea360df583" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222203Z:b6284d09-4de9-4ca2-b86a-7cea360df583" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:22:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14982" + ], + "x-ms-request-id": [ + "f45ed1f1-02d0-4594-872f-97197c604f2c" + ], + "x-ms-correlation-request-id": [ + "f45ed1f1-02d0-4594-872f-97197c604f2c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222214Z:f45ed1f1-02d0-4594-872f-97197c604f2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:22:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14981" + ], + "x-ms-request-id": [ + "75dcbb79-61d5-4c3e-b4ee-47faa91740b0" + ], + "x-ms-correlation-request-id": [ + "75dcbb79-61d5-4c3e-b4ee-47faa91740b0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222224Z:75dcbb79-61d5-4c3e-b4ee-47faa91740b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:22:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14980" + ], + "x-ms-request-id": [ + "f7162161-add4-4750-a660-8eb6f7f0dc87" + ], + "x-ms-correlation-request-id": [ + "f7162161-add4-4750-a660-8eb6f7f0dc87" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222235Z:f7162161-add4-4750-a660-8eb6f7f0dc87" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:22:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14979" + ], + "x-ms-request-id": [ + "05b58472-19cf-41c1-8bf6-de33c6679a54" + ], + "x-ms-correlation-request-id": [ + "05b58472-19cf-41c1-8bf6-de33c6679a54" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222246Z:05b58472-19cf-41c1-8bf6-de33c6679a54" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:22:46 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14978" + ], + "x-ms-request-id": [ + "4f6d6004-acff-45d7-9295-624486931c83" + ], + "x-ms-correlation-request-id": [ + "4f6d6004-acff-45d7-9295-624486931c83" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222256Z:4f6d6004-acff-45d7-9295-624486931c83" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:22:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14977" + ], + "x-ms-request-id": [ + "4f6ceb23-c972-46ad-b94a-52811e81df30" + ], + "x-ms-correlation-request-id": [ + "4f6ceb23-c972-46ad-b94a-52811e81df30" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222307Z:4f6ceb23-c972-46ad-b94a-52811e81df30" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:23:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14976" + ], + "x-ms-request-id": [ + "da91df80-0ef0-4d48-b6cf-ff3f1af1db99" + ], + "x-ms-correlation-request-id": [ + "da91df80-0ef0-4d48-b6cf-ff3f1af1db99" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222317Z:da91df80-0ef0-4d48-b6cf-ff3f1af1db99" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:23:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14975" + ], + "x-ms-request-id": [ + "09bbe7f0-5b14-40f4-9554-e6efb2a44f0b" + ], + "x-ms-correlation-request-id": [ + "09bbe7f0-5b14-40f4-9554-e6efb2a44f0b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222328Z:09bbe7f0-5b14-40f4-9554-e6efb2a44f0b" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:23:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14980" + ], + "x-ms-request-id": [ + "b4e2dd87-2ea6-40dc-9dec-e74da4b7138b" + ], + "x-ms-correlation-request-id": [ + "b4e2dd87-2ea6-40dc-9dec-e74da4b7138b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222339Z:b4e2dd87-2ea6-40dc-9dec-e74da4b7138b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:23:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14979" + ], + "x-ms-request-id": [ + "0d7256d4-e0c2-4891-9a65-14f1eb04acb2" + ], + "x-ms-correlation-request-id": [ + "0d7256d4-e0c2-4891-9a65-14f1eb04acb2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222350Z:0d7256d4-e0c2-4891-9a65-14f1eb04acb2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:23:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14978" + ], + "x-ms-request-id": [ + "a4feba53-efba-4f43-92bc-34afc76a1821" + ], + "x-ms-correlation-request-id": [ + "a4feba53-efba-4f43-92bc-34afc76a1821" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222400Z:a4feba53-efba-4f43-92bc-34afc76a1821" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:24:00 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14977" + ], + "x-ms-request-id": [ + "c1234af2-125c-4b72-9fef-95dd6515b4a0" + ], + "x-ms-correlation-request-id": [ + "c1234af2-125c-4b72-9fef-95dd6515b4a0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222411Z:c1234af2-125c-4b72-9fef-95dd6515b4a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:24:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14976" + ], + "x-ms-request-id": [ + "6daf5346-722e-44d5-b412-d66764ddfc69" + ], + "x-ms-correlation-request-id": [ + "6daf5346-722e-44d5-b412-d66764ddfc69" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222422Z:6daf5346-722e-44d5-b412-d66764ddfc69" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:24:21 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14975" + ], + "x-ms-request-id": [ + "472268f1-716c-4902-9165-661b075e370c" + ], + "x-ms-correlation-request-id": [ + "472268f1-716c-4902-9165-661b075e370c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222432Z:472268f1-716c-4902-9165-661b075e370c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:24:32 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14974" + ], + "x-ms-request-id": [ + "16b3e231-639b-4476-9106-e124d0d55b4a" + ], + "x-ms-correlation-request-id": [ + "16b3e231-639b-4476-9106-e124d0d55b4a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222443Z:16b3e231-639b-4476-9106-e124d0d55b4a" + ], + "Connection": [ + "close" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:24:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{}", + "ResponseHeaders": { + "Content-Length": [ + "2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14973" + ], + "x-ms-request-id": [ + "ff125612-e2c7-4a52-9637-966465d4eb41" + ], + "x-ms-correlation-request-id": [ + "ff125612-e2c7-4a52-9637-966465d4eb41" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222454Z:ff125612-e2c7-4a52-9637-966465d4eb41" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:24:54 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"subscriptionLink\": \"/subscriptions/67950582-3efc-4e2e-9858-cbb3828ed52e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14974" + ], + "x-ms-request-id": [ + "f49f11c9-7c65-4ef8-8c2e-66abbb28ef46" + ], + "x-ms-correlation-request-id": [ + "f49f11c9-7c65-4ef8-8c2e-66abbb28ef46" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222505Z:f49f11c9-7c65-4ef8-8c2e-66abbb28ef46" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:25:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Subscription/subscriptionOperations/a43836c0-4e44-424f-8c35-b7069a956259?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3Vic2NyaXB0aW9uL3N1YnNjcmlwdGlvbk9wZXJhdGlvbnMvYTQzODM2YzAtNGU0NC00MjRmLThjMzUtYjcwNjlhOTU2MjU5P2FwaS12ZXJzaW9uPTIwMTgtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.2633.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Subscription.SubscriptionClient/1.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"subscriptionLink\": \"/subscriptions/67950582-3efc-4e2e-9858-cbb3828ed52e\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "api-supported-versions": [ + "2017-11-01-preview, 2018-03-01-preview" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14973" + ], + "x-ms-request-id": [ + "db8a4f2c-f298-47b6-a536-5dd874fb06db" + ], + "x-ms-correlation-request-id": [ + "db8a4f2c-f298-47b6-a536-5dd874fb06db" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180329T222506Z:db8a4f2c-f298-47b6-a536-5dd874fb06db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Mar 2018 22:25:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-NewSubscription": [ + "ps2774" + ] + }, + "Variables": { + "SubscriptionId": "06a21397-583f-4901-807f-2f68de2fb65a" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Subscription/Commands.Subscription.Test/packages.config b/src/ResourceManager/Subscription/Commands.Subscription.Test/packages.config index b3afc24a64c7..d19c1c364a89 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription.Test/packages.config +++ b/src/ResourceManager/Subscription/Commands.Subscription.Test/packages.config @@ -6,7 +6,7 @@ - + diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/GetAzureRmSubscriptionDefinition.cs b/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/GetAzureRmSubscriptionDefinition.cs deleted file mode 100644 index a90475dcb652..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/GetAzureRmSubscriptionDefinition.cs +++ /dev/null @@ -1,43 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Commands.Subscription.Common; -using Microsoft.Azure.Commands.Subscription.Models; -using Microsoft.Azure.Management.Subscription; -using System.Collections.Generic; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Subscription.Cmdlets -{ - [Cmdlet(VerbsCommon.Get, "AzureRmSubscriptionDefinition", DefaultParameterSetName = ParameterSetNames.Default), OutputType(typeof(List))] - public class GetAzureRmSubscriptionDefinition : AzureSubscriptionDefinitionCmdletBase - { - [Parameter(ParameterSetName = ParameterSetNames.Default, Mandatory = false, HelpMessage = "Name of the subscription definition to retrieve.")] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - public override void ExecuteCmdlet() - { - if (!string.IsNullOrEmpty(this.Name)) - { - this.WriteSubscriptionDefinitionObject(this.SubscriptionDefinitionsClient.SubscriptionDefinitions.Get(this.Name)); - } - else - { - var subscriptionDefinitions = this.SubscriptionDefinitionsClient.SubscriptionDefinitions.List(); - this.WriteSubscriptionDefinitionObjects(subscriptionDefinitions); - } - } - } -} diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/NewAzureRmSubscription.cs b/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/NewAzureRmSubscription.cs new file mode 100644 index 000000000000..bdaa492a8d4a --- /dev/null +++ b/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/NewAzureRmSubscription.cs @@ -0,0 +1,138 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.ResourceManager.Common; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Subscription.Models; +using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory; +using Microsoft.Azure.Management.Subscription; +using Microsoft.Azure.Management.Subscription.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Subscription.Cmdlets +{ + [Cmdlet(VerbsCommon.New, "AzureRmSubscription", SupportsShouldProcess = true), OutputType(typeof(PSAzureSubscription))] + public class NewAzureRmSubscription : AzureRmLongRunningCmdlet + { + private ActiveDirectoryClient _activeDirectoryClient; + private ISubscriptionClient _subscriptionClient; + + public ActiveDirectoryClient ActiveDirectoryClient + { + get + { + if (_activeDirectoryClient == null) + { + _activeDirectoryClient = new ActiveDirectoryClient(DefaultContext); + } + return this._activeDirectoryClient; + } + + set { this._activeDirectoryClient = value; } + } + + /// + /// Gets or sets the subscription client. + /// + public ISubscriptionClient SubscriptionClient + { + get + { + return _subscriptionClient ?? + (_subscriptionClient = + AzureSession.Instance.ClientFactory.CreateArmClient(DefaultContext, + AzureEnvironment.Endpoint.ResourceManager)); + } + set { _subscriptionClient = value; } + } + + [Parameter(Mandatory = true, HelpMessage = "Name of the enrollment account to use when creating the subscription.")] + public string EnrollmentAccountObjectId { get; set; } + + [Parameter(Mandatory = false, Position = 0, HelpMessage = "Name of the subscription. When not specified, a name will be generated based on the specified offer type.")] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "Offer type of the subscription.")] + [PSArgumentCompleter("MS-AZR-0017P", "MS-AZR-0148P")] + public string OfferType { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The user(s) or group object(s) id(s) to be granted Owner access to the subscription.")] + [Alias("OwnerId", "OwnerPrincipalId")] + public string[] OwnerObjectId { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The user(s) to be granted Owner access to the subscription.")] + [Alias("OwnerEmail", "OwnerUserPrincipalName")] + public string[] OwnerSignInName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The app SPN(s) to be granted Owner access to the subscription.")] + [Alias("OwnerSPN", "OwnerServicePrincipalName")] + public string[] OwnerApplicationId { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(target: this.Name, action: "Create subscription")) + { + var owners = this.ResolveObjectIds(this.OwnerObjectId, this.OwnerApplicationId, this.OwnerSignInName).Select(id => new AdPrincipal() { ObjectId = id }).ToArray(); + + // Create the subscription. + var result = this.SubscriptionClient.SubscriptionFactory.CreateSubscriptionInEnrollmentAccount(EnrollmentAccountObjectId, new SubscriptionCreationParameters() + { + DisplayName = this.Name, + OfferType = this.OfferType, + Owners = owners + }); + + // Write output. + var createdSubscription = new AzureSubscription() + { + // SubscriptionLink format is: "/subscriptions/{subscriptionid}" + Id = result.SubscriptionLink.Split('/')[2], + Name = this.Name, + // By definition, a new subscription is always in the enabled state. + State = "Enabled", + }; + createdSubscription.SetTenant(DefaultContext.Tenant.Id); + WriteObject(new PSAzureSubscription(createdSubscription)); + } + } + + private string[] ResolveObjectIds(string[] objectIds, string[] servicePrincipalNames, string[] userPrincipalNames) + { + var uniqueObjectIds = new HashSet(objectIds?.Select(id => Guid.Parse(id)) ?? new Guid[0]); + + if (servicePrincipalNames != null) + { + foreach (string spn in servicePrincipalNames) + { + uniqueObjectIds.Add(Guid.Parse(ActiveDirectoryClient.GetObjectIdFromSPN(spn))); + } + } + + if (userPrincipalNames != null) + { + foreach (string upn in userPrincipalNames) + { + uniqueObjectIds.Add(Guid.Parse(ActiveDirectoryClient.GetObjectIdFromUPN(upn))); + } + } + + return uniqueObjectIds.Select(id => id.ToString()).ToArray(); + } + } +} diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/NewAzureRmSubscriptionDefinition.cs b/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/NewAzureRmSubscriptionDefinition.cs deleted file mode 100644 index c413d979f1d7..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription/Cmdlets/NewAzureRmSubscriptionDefinition.cs +++ /dev/null @@ -1,46 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Subscription.Common; -using Microsoft.Azure.Commands.Subscription.Models; -using Microsoft.Azure.Management.Subscription; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Subscription.Cmdlets -{ - [Cmdlet(VerbsCommon.New, "AzureRmSubscriptionDefinition", SupportsShouldProcess = true), OutputType(typeof(PSSubscriptionDefinition))] - public class NewAzureRmSubscriptionDefinition : AzureSubscriptionDefinitionCmdletBase - { - [Parameter(Mandatory = true, HelpMessage = "Name of the subscription definition.")] - public string Name { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "Offer type of the subscription definition.")] - [PSArgumentCompleter("MS-AZR-0017P", "MS-AZR-0148P")] - public string OfferType { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "Display name of the subscription.")] - public string SubscriptionDisplayName { get; set; } - - public override void ExecuteCmdlet() - { - if (this.ShouldProcess(target: this.Name, action: "Create subscription definition")) - { - this.WriteSubscriptionDefinitionObject(this.SubscriptionDefinitionsClient.SubscriptionDefinitions.Create(this.Name, new Microsoft.Azure.Management.Subscription.Models.SubscriptionDefinition( - offerType: this.OfferType, - subscriptionDisplayName: this.SubscriptionDisplayName ?? this.Name))); - } - } - } -} diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.Netcore.csproj b/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.Netcore.csproj index b5838f59b3e7..a57c57e2d295 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.Netcore.csproj +++ b/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.Netcore.csproj @@ -28,7 +28,7 @@ - + @@ -39,6 +39,7 @@ + diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.csproj b/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.csproj index a960e4a6518b..dfbd8e00aeab 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.csproj +++ b/src/ResourceManager/Subscription/Commands.Subscription/Commands.Subscription.csproj @@ -44,17 +44,15 @@ False - ..\..\..\packages\Microsoft.Azure.Management.Subscription.1.0.0-preview\lib\net452\Microsoft.Azure.Management.Subscription.dll + ..\..\..\packages\Microsoft.Azure.Management.Subscription.1.1.0-preview\lib\net452\Microsoft.Azure.Management.Subscription.dll - - - + - + @@ -62,6 +60,10 @@ {70527617-7598-4AEF-B5BD-DB9186B8184B} Commands.Common.Authentication.Abstractions + + {269acf73-0a34-42dc-ab9c-4b15931a489d} + Commands.Common.Graph.RBAC + {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common @@ -101,4 +103,4 @@ --> - + \ No newline at end of file diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Common/AzureSubscriptionDefinitionCmdletBase.cs b/src/ResourceManager/Subscription/Commands.Subscription/Common/AzureSubscriptionDefinitionCmdletBase.cs deleted file mode 100644 index 7e19205f4978..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription/Common/AzureSubscriptionDefinitionCmdletBase.cs +++ /dev/null @@ -1,57 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Commands.Common.Authentication; -using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -using Microsoft.Azure.Commands.ResourceManager.Common; -using Microsoft.Azure.Commands.Subscription.Models; -using Microsoft.Azure.Management.Subscription; -using System.Collections.Generic; -using System.Linq; - -namespace Microsoft.Azure.Commands.Subscription.Common -{ - /// - /// Base class of Azure Subscription Definition Cmdlet. - /// - public abstract class AzureSubscriptionDefinitionCmdletBase : AzureRMCmdlet - { - private ISubscriptionDefinitionsClient _subscriptionDefinitionClient; - - /// - /// Gets or sets the subscription definition management client. - /// - public ISubscriptionDefinitionsClient SubscriptionDefinitionsClient - { - get - { - return _subscriptionDefinitionClient ?? - (_subscriptionDefinitionClient = - AzureSession.Instance.ClientFactory.CreateArmClient(DefaultContext, - AzureEnvironment.Endpoint.ResourceManager)); - } - set { _subscriptionDefinitionClient = value; } - } - - protected void WriteSubscriptionDefinitionObject(Microsoft.Azure.Management.Subscription.Models.SubscriptionDefinition subscriptionDefinition) - { - this.WriteObject(new PSSubscriptionDefinition(subscriptionDefinition)); - } - - protected void WriteSubscriptionDefinitionObjects(IEnumerable subscriptionDefinitions) - { - this.WriteObject(subscriptionDefinitions.Select(x => new PSSubscriptionDefinition(x)), enumerateCollection: true); - } - } -} diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Microsoft.Azure.Commands.Subscription.Format.ps1xml b/src/ResourceManager/Subscription/Commands.Subscription/Microsoft.Azure.Commands.Subscription.Format.ps1xml index 5f9b0453a7e4..be87cf41be37 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription/Microsoft.Azure.Commands.Subscription.Format.ps1xml +++ b/src/ResourceManager/Subscription/Commands.Subscription/Microsoft.Azure.Commands.Subscription.Format.ps1xml @@ -1,31 +1,37 @@ - - Microsoft.Azure.Commands.Subscription.Models.PSSubscriptionDefinition + + Microsoft.Azure.Commands.Subscription.Models.PSAzureSubscription - Microsoft.Azure.Commands.Subscription.Models.PSSubscriptionDefinition + Microsoft.Azure.Commands.Subscription.Models.PSAzureSubscription - - - - - + + + + + + + + + + + Name - - - SubscriptionId - - - SubscriptionDisplayName - - - OfferType - - - - - + + + Id + + + TenantId + + + State + + + + + diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Models/PSAzureSubscription.cs b/src/ResourceManager/Subscription/Commands.Subscription/Models/PSAzureSubscription.cs new file mode 100644 index 000000000000..af63968be985 --- /dev/null +++ b/src/ResourceManager/Subscription/Commands.Subscription/Models/PSAzureSubscription.cs @@ -0,0 +1,161 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Azure.Commands.Common.Authentication.Abstractions; + +namespace Microsoft.Azure.Commands.Subscription.Models +{ + public class PSAzureSubscription : IAzureSubscription + { + /// + /// Convert between formats of AzureSubscription information. + /// + /// The subscription to convert. + /// The converted subscription. + public static implicit operator PSAzureSubscription(AzureSubscription other) + { + if (other == null) + { + return null; + } + + return new PSAzureSubscription(other); + } + + /// + /// Convert between formats of AzureSubscription information. + /// + /// The subscription to convert. + /// The converted subscription. + public static implicit operator AzureSubscription(PSAzureSubscription other) + { + if (other == null) + { + return null; + } + + var subscription = new AzureSubscription(); + subscription.CopyFrom(other); + return subscription; + } + + /// + /// Default constructor + /// + public PSAzureSubscription() + { + + } + + /// + /// Copy constructor + /// + /// Environment to copy from + public PSAzureSubscription(IAzureSubscription other) + { + this.CopyFrom(other); + } + + /// + /// The subscription id. + /// + public string Id { get; set; } + + /// + /// The name of the subscription. + /// + public string Name { get; set; } + + /// + /// Gets or sets subscription State + /// + public string State { get; set; } + + /// + /// For legacy support - return the subscription Id + /// + public string SubscriptionId { get { return Id; } } + + /// + /// The tenant home for the subscription. + /// + public string TenantId + { + get + { + return this.GetTenant(); + } + set + { + this.SetTenant(value); + } + } + + public string CurrentStorageAccountName + { + get + { + return GetAccountName(CurrentStorageAccount); + } + } + + public IDictionary ExtendedProperties { get; } = new Dictionary(StringComparer.OrdinalIgnoreCase); + + internal string CurrentStorageAccount + { + get + { + return this.GetStorageAccount(); + } + set + { + this.SetStorageAccount(value); + } + } + + public override string ToString() + { + return this.GetId().ToString(); + } + + public static string GetAccountName(string connectionString) + { + var result = connectionString; + if (!string.IsNullOrWhiteSpace(result)) + { + try + { + var pairs = result.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries); + foreach (var pair in pairs) + { + var sides = pair.Split(new char[] { '=' }, 2, StringSplitOptions.RemoveEmptyEntries); + if (string.Equals("AccountName", sides[0].Trim(), StringComparison.OrdinalIgnoreCase)) + { + result = sides[1].Trim(); + break; + } + } + } + catch + { + // if there are any errors, return the unchanged account name + } + } + + return result; + } + } +} diff --git a/src/ResourceManager/Subscription/Commands.Subscription/Models/PSSubscriptionDefinition.cs b/src/ResourceManager/Subscription/Commands.Subscription/Models/PSSubscriptionDefinition.cs deleted file mode 100644 index fedba39b921b..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription/Models/PSSubscriptionDefinition.cs +++ /dev/null @@ -1,44 +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 ApiSubscriptionDefinition = Microsoft.Azure.Management.Subscription.Models.SubscriptionDefinition; - -namespace Microsoft.Azure.Commands.Subscription.Models -{ - public class PSSubscriptionDefinition - { - public string Name { get; private set; } - - public string SubscriptionId { get; private set; } - - public string SubscriptionDisplayName { get; private set; } - - public string OfferType { get; private set; } - - public PSSubscriptionDefinition() - { - } - - public PSSubscriptionDefinition(ApiSubscriptionDefinition subscriptionDefinition) - { - if (subscriptionDefinition != null) - { - this.Name = subscriptionDefinition.Name; - this.SubscriptionId = subscriptionDefinition.SubscriptionId; - this.SubscriptionDisplayName = subscriptionDefinition.SubscriptionDisplayName; - this.OfferType = subscriptionDefinition.OfferType; - } - } - } -} diff --git a/src/ResourceManager/Subscription/Commands.Subscription/help/AzureRM.Subscription.Preview.md b/src/ResourceManager/Subscription/Commands.Subscription/help/AzureRM.Subscription.Preview.md index 8ccca6dc8f2c..9af03e4e27e2 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription/help/AzureRM.Subscription.Preview.md +++ b/src/ResourceManager/Subscription/Commands.Subscription/help/AzureRM.Subscription.Preview.md @@ -1,4 +1,4 @@ ---- +--- Module Name: AzureRM.Subscription.Preview Module Guid: 8074e741-0979-4b4e-8f9b-7243f213d98a Download Help Link: @@ -10,10 +10,7 @@ Locale: en-US ## Description The topics in this section document the Azure PowerShell cmdlets for Azure Subscription in the Azure Resource Manager (ARM) framework. The cmdlets exist in the Microsoft.Azure.Commands.Subscription namespace. -## AzureRM.Subscription Cmdlets -### [Get-AzureRmSubscriptionDefinition](Get-AzureRmSubscriptionDefinition.md) -Gets a subscription definition. - -### [New-AzureRmSubscriptionDefinition](New-AzureRmSubscriptionDefinition.md) -Creates a subscription definition. +## AzureRM.Subscription.Preview Cmdlets +### [New-AzureRmSubscription](New-AzureRmSubscription.md) +Creates an Azure subscription. diff --git a/src/ResourceManager/Subscription/Commands.Subscription/help/Get-AzureRmSubscriptionDefinition.md b/src/ResourceManager/Subscription/Commands.Subscription/help/Get-AzureRmSubscriptionDefinition.md deleted file mode 100644 index 4cf5f61a6e9f..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription/help/Get-AzureRmSubscriptionDefinition.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -external help file: Microsoft.Azure.Commands.SubscriptionDefinition.dll-Help.xml -online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.subscription.preview/get-azurermsubscriptiondefinition -schema: 2.0.0 ---- - -# Get-AzureRmSubscriptionDefinition - -## SYNOPSIS -Get a subscription definition. - -## SYNTAX - -### Get subscription definitions. -``` -Get-AzureRmSubscriptionDefinition -``` - -## EXAMPLES - -### Example 1 -``` -PS C:\> Get-AzureRmSubscriptionDefinition - -Name : MyProdSubscription1 -SubscriptionId : 86869d42-1782-4337-98b0-c905fb937d46 -SubscriptionDisplayName : MyProdSubscription1 -OfferType : MS-AZR-0017P - -Name : MyProdSubscription2 -SubscriptionId : 368425df-b536-4f42-b1ba-64613cfcc4b5 -SubscriptionDisplayName : MyProdSubscription2 -OfferType : MS-AZR-0017P -``` - -Gets all subscription definitions. - -### Example 2 -``` -PS C:\> Get-AzureRmSubscriptionDefinition -Name MyProdSubscription2 - -Name : MyProdSubscription2 -SubscriptionId : 368425df-b536-4f42-b1ba-64613cfcc4b5 -SubscriptionDisplayName : MyProdSubscription2 -OfferType : MS-AZR-0017P -``` - -Gets a subscription definition with the name MyProdSubscription2. - -## PARAMETERS - -### -Name -The name of the subscription definition to retrieve. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### None - -## OUTPUTS - -### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.SubscriptionDefinition.Models.PSSubscriptionDefinition, Microsoft.Azure.Commands.SubscriptionDefinition, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]] - -## NOTES - -## RELATED LINKS - diff --git a/src/ResourceManager/Subscription/Commands.Subscription/help/New-AzureRmSubscription.md b/src/ResourceManager/Subscription/Commands.Subscription/help/New-AzureRmSubscription.md new file mode 100644 index 000000000000..162ed3610160 --- /dev/null +++ b/src/ResourceManager/Subscription/Commands.Subscription/help/New-AzureRmSubscription.md @@ -0,0 +1,203 @@ +--- +external help file: Microsoft.Azure.Commands.Subscription.dll-Help.xml +Module Name: AzureRM.Subscription.Preview +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.subscription.preview/new-azurermsubscription +schema: 2.0.0 +--- + +# New-AzureRmSubscription + +## SYNOPSIS +Creates an Azure subscription. + +## SYNTAX + +``` +New-AzureRmSubscription -EnrollmentAccountObjectId [[-Name] ] -OfferType + [-OwnerObjectId ] [-OwnerSignInName ] [-OwnerApplicationId ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzureRmSubscription** cmdlet creates an Azure subscription. + +## EXAMPLES + +### Example 1 +``` +PS C:\> New-AzureRmSubscription -Name "My Subscription" -EnrollmentAccountObjectId (Get-AzureRmEnrollmentAccount)[0].ObjectId) -OfferType MS-AZR-0017P + +Name : My Subscription +Id : 86869d42-1782-4337-98b0-c905fb937d46 +TenantId : a5dcb057-fd83-4384-9d49-5198004d33a5 +State : Enabled +``` + +Creates an Azure subscription under the specified enrollment account with the specified offer type. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnrollmentAccountObjectId +Name of the enrollment account to use when creating the subscription. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the subscription to create. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OfferType +The type of offer to use when creating the subscription. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OwnerApplicationId +The app SPN(s) to be granted Owner access to the subscription. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OwnerSPN, OwnerServicePrincipalName + +Required: False +Position: Named +Default value: Name +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OwnerObjectId +The user(s) or group object(s) id(s) to be granted Owner access to the subscription. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OwnerId, OwnerPrincipalId + +Required: False +Position: Named +Default value: Name +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OwnerSignInName +The user(s) to be granted Owner access to the subscription. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OwnerEmail, OwnerUserPrincipalName + +Required: False +Position: Named +Default value: Name +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Profile.Models.PSAzureSubscription + +## NOTES + +## RELATED LINKS diff --git a/src/ResourceManager/Subscription/Commands.Subscription/help/New-AzureRmSubscriptionDefinition.md b/src/ResourceManager/Subscription/Commands.Subscription/help/New-AzureRmSubscriptionDefinition.md deleted file mode 100644 index dd764ba5f9eb..000000000000 --- a/src/ResourceManager/Subscription/Commands.Subscription/help/New-AzureRmSubscriptionDefinition.md +++ /dev/null @@ -1,109 +0,0 @@ ---- -external help file: Microsoft.Azure.Commands.SubscriptionDefinition.dll-Help.xml -online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.subscription.preview/new-azurermsubscriptiondefinition -schema: 2.0.0 ---- - -# New-AzureRmSubscriptionDefinition - -## SYNOPSIS -Creates a subscription definition. - -## SYNTAX - -### Create subscription definition -``` -New-AzureRmSubscriptionDefinition -Name -OfferType [-SubscriptionDisplayName ] -``` - -## DESCRIPTION -The **New-AzureRmSubscriptionDefinition** cmdlet creates a subscription definition. - -## EXAMPLES - -### Example 1 -``` -PS C:\> New-AzureRmSubscriptionDefinition -Name MySubDef -OfferType MS-AZR-0017P - -Name : MySubDef -SubscriptionId : 86869d42-1782-4337-98b0-c905fb937d46 -SubscriptionDisplayName : MySubDef -OfferType : MS-AZR-0017P -``` - -Creates a subscription definition with a default subscription display name. - -### Example 2 -``` -PS C:\> New-AzureRmSubscriptionDefinition -Name MySubDef -OfferType MS-AZR-0017P -SubscriptionDisplayName MyPaygoSub - -Name : MySubDef -SubscriptionId : 86869d42-1782-4337-98b0-c905fb937d46 -SubscriptionDisplayName : MyPaygoSub -OfferType : MS-AZR-0017P -``` - -Creates a subscription definition with a custom subscription display name. - -## PARAMETERS - -### -Name -The name of the subscription definition to create. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -OfferType -The type of offer to use when creating the underlying subscription. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubscriptionDisplayName -The display name to use when creating the subscription definition's underlying subscription. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: Name -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.SubscriptionDefinition.Models.PSSubscriptionDefinition - -## NOTES - -## RELATED LINKS - diff --git a/src/ResourceManager/Subscription/Commands.Subscription/packages.config b/src/ResourceManager/Subscription/Commands.Subscription/packages.config index 51da16b21b7e..90f4b926fb69 100644 --- a/src/ResourceManager/Subscription/Commands.Subscription/packages.config +++ b/src/ResourceManager/Subscription/Commands.Subscription/packages.config @@ -1,4 +1,4 @@  - + diff --git a/src/ResourceManager/Subscription/Subscription.sln b/src/ResourceManager/Subscription/Subscription.sln index f026f629e3ba..58207f7477f2 100644 --- a/src/ResourceManager/Subscription/Subscription.sln +++ b/src/ResourceManager/Subscription/Subscription.sln @@ -123,6 +123,7 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution + {79260EE2-A9A6-4D27-9B2C-B84F12A6A1D4} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {69C2EB6B-CD63-480A-89A0-C489706E9299} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {3436A126-EDC9-4060-8952-9A1BE34CDD95} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {8058D403-06E3-4BED-8924-D166CE303961} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} diff --git a/src/ResourceManager/Subscription/documentation/current-breaking-changes.md b/src/ResourceManager/Subscription/documentation/current-breaking-changes.md index 0f0cb267c941..af492ed099f7 100644 --- a/src/ResourceManager/Subscription/documentation/current-breaking-changes.md +++ b/src/ResourceManager/Subscription/documentation/current-breaking-changes.md @@ -38,4 +38,27 @@ https://github.com/Azure/azure-powershell/blob/dev/documentation/breaking-changes/breaking-change-template.md --> -## Current Breaking Changes \ No newline at end of file +## Current Breaking Changes +The following cmdlets were affected this release: + +**Get-AzureRmSubscriptionDefinition** +- Removed. Use Get-AzureRmSubscription instead. + +```powershell +# Old +# Get-AzureRmSubscriptionDefinition + +# New +# Get-AzureRmSubscription +``` + +**New-AzureRmSubscriptionDefinition** +- Replaced by New-AzureRmSubscription. + +```powershell +# Old +# New-AzureRmSubscriptionDefinition -Name mysubdef -OfferType ... + +# New +# New-AzureRmSubscription -EnrollmentAccountObjectId ... -OfferType ... +``` diff --git a/tools/StaticAnalysis/Exceptions/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/BreakingChangeIssues.csv index afa317235e8c..9f3bba3a7e26 100644 --- a/tools/StaticAnalysis/Exceptions/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/BreakingChangeIssues.csv @@ -1142,3 +1142,5 @@ "Microsoft.Azure.Commands.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmSnapshotUpdateConfigCommand","New-AzureRmSnapshotUpdateConfig","0","3030","The generic type for 'parameter SkuName' has been changed from 'System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes]' to 'System.Nullable`1[Microsoft.Azure.Commands.Compute.Models.PSStorageAccountTypes]'. ","Change the generic type for 'parameter SkuName' back to 'System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes]'." "Microsoft.Azure.Commands.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.AddAzureRmVmssDataDiskCommand","Add-AzureRmVmssDataDisk","0","3030","The generic type for 'parameter StorageAccountType' has been changed from 'System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes]' to 'System.Nullable`1[Microsoft.Azure.Commands.Compute.Models.PSStorageAccountTypes]'. ","Change the generic type for 'parameter StorageAccountType' back to 'System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes]'." "Microsoft.Azure.Commands.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.SetAzureRmVmssStorageProfileCommand","Set-AzureRmVmssStorageProfile","0","3030","The generic type for 'parameter ManagedDisk' has been changed from 'System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes]' to 'System.Nullable`1[Microsoft.Azure.Commands.Compute.Models.PSStorageAccountTypes]'. ","Change the generic type for 'parameter ManagedDisk' back to 'System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StorageAccountTypes]'." +"Microsoft.Azure.Commands.Subscription.dll","Microsoft.Azure.Commands.Subscription.Cmdlets.NewAzureRmSubscriptionDefinition","New-AzureRmSubscriptionDefinition","0","1000","The cmdlet 'New-AzureRmSubscriptionDefinition' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'New-AzureRmSubscriptionDefinition' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.Commands.Subscription.dll","Microsoft.Azure.Commands.Subscription.Cmdlets.GetAzureRmSubscriptionDefinition","Get-AzureRmSubscriptionDefinition","0","1000","The cmdlet 'Get-AzureRmSubscriptionDefinition' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Get-AzureRmSubscriptionDefinition' back to the module, or add an alias to the original cmdlet name."